Simplified setup

This commit is contained in:
Weckyy702
2026-01-12 12:03:28 +01:00
parent 0524def0ad
commit 7fd9d83ce1
16 changed files with 81 additions and 2299 deletions

View File

@@ -18,14 +18,13 @@
nixpkgs.lib.nixosSystem {
inherit specialArgs;
modules = [
./hosts/keith
./users/${username}/nixos.nix
./configuration.nix
home-manager.nixosModules.home-manager {
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.extraSpecialArgs = specialArgs;
home-manager.users.${username} = import ./users/${username}/home.nix;
home-manager.users.${username} = import ./home.nix;
}
];
};