Refactor 'hosts/' to use 'default.nix'
parent
2793aa4e59
commit
5f65c9ad92
|
|
@ -61,15 +61,15 @@
|
||||||
nix.nixPath = [ "nixpkgs=${inputs.nixpkgs}" ]; # <https://github.com/nix-community/nixd/blob/main/nixd/docs/configuration.md>
|
nix.nixPath = [ "nixpkgs=${inputs.nixpkgs}" ]; # <https://github.com/nix-community/nixd/blob/main/nixd/docs/configuration.md>
|
||||||
nixosConfigurations = {
|
nixosConfigurations = {
|
||||||
vm = nixpkgs.lib.nixosSystem {
|
vm = nixpkgs.lib.nixosSystem {
|
||||||
modules = [ ./hosts/vm/configuration.nix ];
|
modules = [ ./hosts/vm ];
|
||||||
specialArgs = { inherit inputs; };
|
specialArgs = { inherit inputs; };
|
||||||
};
|
};
|
||||||
andromache = nixpkgs.lib.nixosSystem {
|
andromache = nixpkgs.lib.nixosSystem {
|
||||||
modules = [ ./hosts/andromache/configuration.nix ];
|
modules = [ ./hosts/andromache ];
|
||||||
specialArgs = { inherit inputs; };
|
specialArgs = { inherit inputs; };
|
||||||
};
|
};
|
||||||
astyanax = nixpkgs.lib.nixosSystem {
|
astyanax = nixpkgs.lib.nixosSystem {
|
||||||
modules = [ ./hosts/astyanax/configuration.nix ];
|
modules = [ ./hosts/astyanax ];
|
||||||
specialArgs = { inherit inputs; };
|
specialArgs = { inherit inputs; };
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue