summaryrefslogtreecommitdiffstats
path: root/2configs/tv/smartd.nix
blob: 2e9d955d1cadb6548b2b01977480d371fcf91349 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ config, pkgs, ... }:

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