about summary refs log tree commit diff
path: root/nixos/modules/profiles
diff options
context:
space:
mode:
authorMichael Hoang <enzime@users.noreply.github.com>2023-07-23 18:07:48 +1000
committerMichael Hoang <enzime@users.noreply.github.com>2023-07-23 18:07:48 +1000
commit1deed6cd12c9bb29cfbf8deeb72bb0dbb28c47d5 (patch)
tree10cd8acddcd0d35b19319680619c9c6635c703f8 /nixos/modules/profiles
parent12303c652b881435065a98729eb7278313041e49 (diff)
linux-builder: fix eval failure
Diffstat (limited to 'nixos/modules/profiles')
-rw-r--r--nixos/modules/profiles/macos-builder.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/nixos/modules/profiles/macos-builder.nix b/nixos/modules/profiles/macos-builder.nix
index 83a8499561823..cc01b16960ce4 100644
--- a/nixos/modules/profiles/macos-builder.nix
+++ b/nixos/modules/profiles/macos-builder.nix
@@ -21,7 +21,8 @@ in
         ../virtualisation/nixos-containers.nix
         ../services/x11/desktop-managers/xterm.nix
       ];
-      config = { };
+      # swraid's default depends on stateVersion
+      config.boot.swraid.enable = false;
       options.boot.isContainer = lib.mkOption { default = false; internal = true; };
     }
   ];