summaryrefslogtreecommitdiffstats
path: root/krebs/3modules/dns.nix
blob: 8acc4ccd8207ad3b6e458a51438fe095167f8848 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
with import <stockholm/lib>;
{
  options = {
    krebs.dns.providers = mkOption {
      type = types.attrsOf types.str;
    };

    krebs.dns.search-domain = mkOption {
      type = types.nullOr types.hostname;
    };
  };
}