stockholm/tv/2configs/smartd.nix

18 lines
300 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"
2015-07-24 23:06:13 +00:00
"-m ${config.krebs.users.tv.mail}"
2015-07-11 14:55:22 +00:00
"-s (O/../.././09|S/../.././04|L/../../6/05)"
];
}
];
};
}