This commit is contained in:
2026-07-01 08:41:02 +02:00
parent 662418a838
commit 65297bf69c
34 changed files with 120 additions and 4 deletions
+17 -1
View File
@@ -18,11 +18,27 @@
useGlobalPkgs = true;
useUserPackages = true;
extraSpecialArgs = { inherit inputs; };
users.user = ./mod/home/home.nix;
users.user = ./hosts/kepler/mod/home/home.nix;
};
}
];
};
nixosConfigurations.voyager = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit inputs system; };
modules = [
./hosts/voyager/configuration.nix
#home-manager.nixosModules.home-manager
#{
#home-manager = {
# useGlobalPkgs = true;
# useUserPackages = true;
# extraSpecialArgs = { inherit inputs; };
# users.user = ./hosts/voyager/modules/home/home.nix;
#};
#}
];
};
};
}