stockholm/2configs/tv/smartd.nix

18 lines
285 B
Nix
Raw Normal View History

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