From c11f35ae8be9a73803a8f398a54470bed7a28797 Mon Sep 17 00:00:00 2001 From: fruchti Date: Wed, 17 Dec 2025 09:20:05 +0100 Subject: [PATCH] Rupert: Limit smartd to explicit hard drives --- hosts/Rupert.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/hosts/Rupert.nix b/hosts/Rupert.nix index c050a52..54e83af 100644 --- a/hosts/Rupert.nix +++ b/hosts/Rupert.nix @@ -144,6 +144,15 @@ in services.smartd = { enable = true; + autodetect = false; + devices = [ + { + device = "/dev/sda"; + } + { + device = "/dev/sdb"; + } + ]; notifications.x11.enable = false; notifications.mail = { enable = true;