From 4ed12573ffa70b7e0cc8c59464bc5584077cad64 Mon Sep 17 00:00:00 2001 From: Daniel Olsen Date: Tue, 3 Sep 2024 13:07:58 +0200 Subject: [PATCH] ildkule: fix system activation by disabling smartd --- hosts/ildkule/configuration.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hosts/ildkule/configuration.nix b/hosts/ildkule/configuration.nix index a154ce77..557f4985 100644 --- a/hosts/ildkule/configuration.nix +++ b/hosts/ildkule/configuration.nix @@ -46,6 +46,9 @@ environment.systemPackages = with pkgs; [ ]; + # No devices with SMART + services.smartd.enable = false; + system.stateVersion = "23.11"; # Did you read the comment? }