13 lines
228 B
Nix
13 lines
228 B
Nix
{ pkgs, ... }:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
smartmontools
|
|
nvme-cli
|
|
];
|
|
|
|
services.smartd = {
|
|
enable = true;
|
|
defaults.autodetected = "-a -o on -n idle,10 -s (S/../.././02|L/../../7/04)";
|
|
};
|
|
}
|