diff options
Diffstat (limited to 'flake/nixosConfigurations')
-rw-r--r-- | flake/nixosConfigurations/default.nix | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/flake/nixosConfigurations/default.nix b/flake/nixosConfigurations/default.nix index cf825b86..79f9831a 100644 --- a/flake/nixosConfigurations/default.nix +++ b/flake/nixosConfigurations/default.nix @@ -39,12 +39,10 @@ ++ defaultModules; }; }; - hosts = [ - "tiamat" - #"mammun" - "apzu" - #"lahmu" - ]; + # FIXME; These need to stay in this position for the install script + hosts = ["tiamat" "apzu"]; + inactiveHosts = ["mammun" "lahmu"]; + generatedHosts = builtins.listToAttrs (builtins.map generateHost hosts); in generatedHosts |