Refactor 'hosts/' to use 'default.nix'

main
Hektor Misplon 2025-11-17 20:41:34 +00:00
parent 2793aa4e59
commit 5f65c9ad92
4 changed files with 3 additions and 3 deletions

View File

@ -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; };
}; };
}; };