From c337b63c979467735fcacaaa37136092bd7c9735 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Mon, 4 Nov 2024 18:29:52 +0000 Subject: [PATCH] Update configuration.nix --- hosts/x86_64/EDI/configuration.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/hosts/x86_64/EDI/configuration.nix b/hosts/x86_64/EDI/configuration.nix index 89cea5c..ff09c3c 100644 --- a/hosts/x86_64/EDI/configuration.nix +++ b/hosts/x86_64/EDI/configuration.nix @@ -15,14 +15,16 @@ boot.kernelParams = [ "console=tty0" ]; boot.binfmt.emulatedSystems = [ "aarch64-linux" ]; + # You can find the swraid ARRAY information with this command + # sudo mdadm --detail --scan >> mdadm.conf + # Now just copy that information into the line + + # The MAILADDR is to fix a warning for swraid + boot.swraid = { enable = true; mdadmConf = '' - # You can find that ARRAY information with this command - # sudo mdadm --detail --scan >> mdadm.conf - # Now just copy that information into the line ARRAY /dev/md/edi:DATA metadata=1.2 UUID=f0384881:84c12f70:3dcad802:653ccc30 - # This is to make an error disappear MAILADDR root ''; };