diff options
author | tv <tv@shackspace.de> | 2015-08-13 22:28:19 +0200 |
---|---|---|
committer | tv <tv@shackspace.de> | 2015-08-13 22:28:19 +0200 |
commit | 69723fdefa733b0155db107204f302ad0b537ab0 (patch) | |
tree | eebae12a1060f016b9047a2eb717304053c4a301 /krebs/4lib | |
parent | 95d9791e906db230e4fbdc990cd481c88be7e571 (diff) | |
parent | d230db96d9b7403da64887b6ceebcacc564c268b (diff) |
Merge remote-tracking branch 'pnp/master'
Diffstat (limited to 'krebs/4lib')
-rw-r--r-- | krebs/4lib/types.nix | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/krebs/4lib/types.nix b/krebs/4lib/types.nix index 975c36b08..f767d20fe 100644 --- a/krebs/4lib/types.nix +++ b/krebs/4lib/types.nix @@ -21,6 +21,12 @@ types // rec { apply = x: assert hasAttr "retiolum" x; x; }; + extraZones = mkOption { + default = {}; + # TODO: string is either MX, NS, A or AAAA + type = with types; attrsOf string; + }; + secure = mkOption { type = bool; default = false; @@ -74,11 +80,6 @@ types // rec { })); default = null; }; - zones = mkOption { - default = []; - # TODO: string is either MX, NS, A or AAAA - type = with types; listOf (attrsOf str); - }; }; }); |