lol

nntp-proxy module: use enum

+2 -2
+2 -2
nixos/modules/services/networking/nntp-proxy.nix
··· 148 148 }; 149 149 150 150 verbosity = mkOption { 151 - type = types.str; 151 + type = types.enum [ "error" "warning" "notice" "info" "debug" ]; 152 152 default = "info"; 153 153 example = "error"; 154 154 description = '' 155 - Verbosity level (error, warning, notice, info, debug) 155 + Verbosity level 156 156 ''; 157 157 }; 158 158