diff options
author | Soispha <soispha@vhack.eu> | 2023-07-11 12:43:35 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-07-11 12:43:35 +0200 |
commit | 8ac805269894dfcf448b873e43d429d39fde757f (patch) | |
tree | dacc5fa70ee4d7359a2b798abf759ff93b90370d /flake/nixosConfigurations | |
parent | Style(treewide): Switch to editorconfig (diff) | |
download | nixos-config-8ac805269894dfcf448b873e43d429d39fde757f.tar.gz nixos-config-8ac805269894dfcf448b873e43d429d39fde757f.zip |
Fix(flake/nixosConfigurations): Change formatting for the bootstrap scrs
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 |