about summary refs log tree commit diff stats
path: root/flake/nixosConfigurations
diff options
context:
space:
mode:
Diffstat (limited to 'flake/nixosConfigurations')
-rw-r--r--flake/nixosConfigurations/default.nix8
1 files changed, 7 insertions, 1 deletions
diff --git a/flake/nixosConfigurations/default.nix b/flake/nixosConfigurations/default.nix
index d8667673..e521a5ab 100644
--- a/flake/nixosConfigurations/default.nix
+++ b/flake/nixosConfigurations/default.nix
@@ -25,6 +25,7 @@
   home-manager,
   agenix,
   serverphone,
+  disko,
   ...
 }: let
   generateHost = name: {
@@ -39,7 +40,12 @@
         ++ defaultModules;
     };
   };
-  hosts = ["tiamat" "mammun" "apzu" "lahmu"];
+  hosts = [
+    "tiamat"
+    #"mammun"
+    "apzu"
+    #"lahmu"
+  ];
   generatedHosts = builtins.listToAttrs (builtins.map generateHost hosts);
 in
   generatedHosts