diff --git a/common/default.nix b/common/default.nix index cc698e4..31c6593 100644 --- a/common/default.nix +++ b/common/default.nix @@ -196,6 +196,12 @@ in # profile sync daemon services.psd.enable = true; + services.smartd = + { + enable = true; + devices = [{ device = "/dev/sda"; } { device = "/dev/sdb"; }]; + }; + fonts = { fontDir.enable = true; fontconfig.enable = true; diff --git a/hosts/framenix/default.nix b/hosts/framenix/default.nix index e2df6a9..bde4c32 100644 --- a/hosts/framenix/default.nix +++ b/hosts/framenix/default.nix @@ -32,10 +32,5 @@ system.stateVersion = "23.11"; # Did you read the comment? hardware.enableRedistributableFirmware = true; - - services.fwupd.enable = true; - - # I do not need fingerprint reading - services.fprintd.enable = false; } diff --git a/hosts/thinknix/storage.nix b/hosts/thinknix/storage.nix index 358370f..557db3f 100644 --- a/hosts/thinknix/storage.nix +++ b/hosts/thinknix/storage.nix @@ -64,9 +64,4 @@ in boot.tmp.useTmpfs = true; fileSystems."/tmp".fsType = "tmpfs"; - services.smartd = - { - enable = true; - devices = [{ device = "/dev/sda"; } { device = "/dev/sdb"; }]; - }; }