summary refs log tree commit diff
path: root/nixos/modules/services/networking/nsd.nix
diff options
context:
space:
mode:
authorEric Sagnes <eric.sagnes@gmail.com>2016-11-16 22:37:14 +0900
committerEric Sagnes <eric.sagnes@gmail.com>2016-11-16 22:37:14 +0900
commit15d25df6987bdc781f3fd67a00995d6cca86936d (patch)
treeee5c8e42affa473a056c15c7feb642bd53530778 /nixos/modules/services/networking/nsd.nix
parent5259fb218103cd3111e2534e941362b80d48043f (diff)
downloadnixpkgs-15d25df6987bdc781f3fd67a00995d6cca86936d.tar
nixpkgs-15d25df6987bdc781f3fd67a00995d6cca86936d.tar.gz
nixpkgs-15d25df6987bdc781f3fd67a00995d6cca86936d.tar.bz2
nixpkgs-15d25df6987bdc781f3fd67a00995d6cca86936d.tar.lz
nixpkgs-15d25df6987bdc781f3fd67a00995d6cca86936d.tar.xz
nixpkgs-15d25df6987bdc781f3fd67a00995d6cca86936d.tar.zst
nixpkgs-15d25df6987bdc781f3fd67a00995d6cca86936d.zip
nsd module: use enum
Diffstat (limited to 'nixos/modules/services/networking/nsd.nix')
-rw-r--r--nixos/modules/services/networking/nsd.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/nixos/modules/services/networking/nsd.nix b/nixos/modules/services/networking/nsd.nix
index ccfd219620c..481e267f6c3 100644
--- a/nixos/modules/services/networking/nsd.nix
+++ b/nixos/modules/services/networking/nsd.nix
@@ -345,12 +345,10 @@ let
       };
 
       rrlWhitelist = mkOption {
-        type = types.listOf types.str;
+        type = with types; listOf (enum [ "nxdomain" "error" "referral" "any" "rrsig" "wildcard" "nodata" "dnskey" "positive" "all" ]);
         default = [];
         description = ''
           Whitelists the given rrl-types.
-          The RRL classification types are:  nxdomain,  error, referral, any,
-          rrsig, wildcard, nodata, dnskey, positive, all
         '';
       };