stockholm/krebs/3modules/dns.nix

22 lines
509 B
Nix
Raw Normal View History

2023-06-10 10:50:53 +00:00
{ config, lib, pkgs, ... }:
with import ../../lib/pure.nix { inherit lib; }; {
options = {
krebs.dns.providers = mkOption {
type = types.attrsOf types.str;
};
krebs.dns.search-domain = mkOption {
type = types.nullOr types.hostname;
};
};
2023-06-10 10:50:53 +00:00
config = lib.mkIf config.krebs.enable {
2022-11-23 15:49:41 +00:00
krebs.dns.providers = {
"krebsco.de" = "zones";
shack = "hosts";
i = "hosts";
r = "hosts";
w = "hosts";
};
krebs.dns.search-domain = mkDefault "r";
};
}