From 34468bab06fe68b0f4ae3c7cc93afce7382e58ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Fri, 11 Aug 2023 17:34:56 +0200 Subject: [PATCH] hetzner-ex101: add boot.swraid.enable option --- modules/hetzner-ex101.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/hetzner-ex101.nix b/modules/hetzner-ex101.nix index 436a824..cafb6eb 100644 --- a/modules/hetzner-ex101.nix +++ b/modules/hetzner-ex101.nix @@ -1,7 +1,7 @@ { pkgs, ... }: { # Enable raid support specifically, this will disable srvos's # systemd-initrd as well, which currently is not compatible with mdraid. - boot.initrd.services.swraid.enable = true; + boot.swraid.enable = true; systemd.services.mdmonitor.enable = false; boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true;