common/smartd: add `smartctl` to environment packages

This commit is contained in:
Oystein Kristoffer Tveit 2024-09-01 01:51:34 +02:00
parent bf2959c68d
commit da8e073e8d
Signed by: oysteikt
GPG Key ID: 9F2F7D8250F35146
1 changed files with 5 additions and 1 deletions

View File

@ -1,4 +1,8 @@
{ ... }: { pkgs, ... }:
{ {
services.smartd.enable = true; services.smartd.enable = true;
environment.systemPackages = with pkgs; [
smartmontools
];
} }