trying again

This commit is contained in:
2024-10-20 14:23:22 -05:00
parent 82ca092265
commit 8316336e0d
3 changed files with 2004 additions and 4 deletions

1982
flake.lock generated Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -74,7 +74,7 @@
(modulesPath + "/installer/cd-dvd/installation-cd-minimal.nix")
];
homeconfig = {
home-manager.users.${username}.homeconfig = {
minimal = true;
externalPackages.enable = false;
calcurse.enable = false;
@@ -118,7 +118,7 @@
})
core_inputs.system.module
core_inputs.system.nixosModule
core_inputs.home-manager.nixosModules.home-manager
];
@@ -133,7 +133,25 @@
};
extraSpecialArgs = { inherit core_inputs; };
modules = [ core_inputs.nathan.homeManagerModule ];
modules = [
core_inputs.nathan.homeManagerModule
{
homeconfig = {
minimal = false;
externalPackages.enable = true;
calcurse.enable = true;
wayvnc.enable = true;
rofi.enable = true;
mpd.enable = true;
wal.enable = true;
ags.enable = true;
hyprland.enable = true;
swaylock.enable = true;
};
}
];
};
};

View File

@@ -20,7 +20,7 @@
in {
hmModule = { pkgs, ... }: import ./. { inherit pkgs pkgs-us self; };
hmModule = { config, lib, pkgs, ... }: import ./. { inherit config lib pkgs pkgs-us self; };
};
}