Refactor 'hosts/' to use 'default.nix'
This commit is contained in:
@@ -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; };
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user