summaryrefslogtreecommitdiffstats
path: root/krebs/3modules/dns.nix
blob: b7e2a2cbbae115b7cef1ec04b27cf3943281be44 (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.hostname;
    };
  };
}