i heard you liked modules so i

put modules in you
r modules so you can mo
dule while you mod
ule
This commit is contained in:
marty 2025-12-21 14:21:07 +01:00
parent 2d08836672
commit 8bac46929b
13 changed files with 274 additions and 83 deletions

View file

@ -29,6 +29,16 @@
in
{
nixosConfigurations = {
marty-latitude = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit inputs; };
modules = [
./hosts/marty-latitude
./configuration.nix
home-manager.nixosModules.home-manager
nixos-cli.nixosModules.nixos-cli
];
};
marty-pc = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit inputs; };
@ -50,16 +60,6 @@
];
};
marty-latitude = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit inputs; };
modules = [
./hosts/marty-latitude
./configuration.nix
home-manager.nixosModules.home-manager
nixos-cli.nixosModules.nixos-cli
];
};
};
};
}