From 7f003f9e7fa5100ab151e3adf9a60bc8c5f1b935 Mon Sep 17 00:00:00 2001 From: notohh Date: Sat, 16 Sep 2023 19:54:23 -0400 Subject: [PATCH] system: configure MAILADDR for mdadm --- modules/system.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/system.nix b/modules/system.nix index 1472eb4..9cd92ab 100644 --- a/modules/system.nix +++ b/modules/system.nix @@ -29,6 +29,10 @@ }; }; + environment.etc."mdadm.conf".text = '' + MAILADDR root + ''; + boot.kernelPackages = pkgs.linuxPackages_latest; systemd.services.systemd-udevd.restartIfChanged = false;