stockholm/2configs/tv/smartd.nix
2015-07-11 19:39:01 +02:00

18 lines
285 B
Nix

{ config, pkgs, ... }:
{
services.smartd = {
enable = true;
devices = [
{
device = "DEVICESCAN";
options = toString [
"-a"
"-m tv@wu.retiolum"
"-s (O/../.././09|S/../.././04|L/../../6/05)"
];
}
];
};
}