diff --git a/hosts/default.nix b/hosts/default.nix index 25485b6..1e764d6 100644 --- a/hosts/default.nix +++ b/hosts/default.nix @@ -15,7 +15,7 @@ let system = "x86_64-linux"; modules = commonModules ++ [ pkgs.nixosModules.notDetected - (./. + "/configuration_${name}.nix") + (./. + "/${name}") ]; }; @@ -23,7 +23,7 @@ let system = "x86_64-linux"; modules = commonModules ++ [ (x: { imports = [ "${x.modulesPath}/profiles/qemu-guest.nix" ]; }) - (./. + "/configuration_${name}.nix") + (./. + "/${name}") ]; }; diff --git a/hosts/configuration_hp.nix b/hosts/hp/default.nix similarity index 100% rename from hosts/configuration_hp.nix rename to hosts/hp/default.nix diff --git a/hosts/configuration_manta.nix b/hosts/manta/default.nix similarity index 100% rename from hosts/configuration_manta.nix rename to hosts/manta/default.nix diff --git a/hosts/configuration_neo.nix b/hosts/neo/default.nix similarity index 100% rename from hosts/configuration_neo.nix rename to hosts/neo/default.nix diff --git a/hosts/configuration_vm.nix b/hosts/vm/default.nix similarity index 100% rename from hosts/configuration_vm.nix rename to hosts/vm/default.nix