tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
nntp-proxy module: use enum
Eric Sagnes
9 years ago
5259fb21
fb26d561
+2
-2
1 changed file
expand all
collapse all
unified
split
nixos
modules
services
networking
nntp-proxy.nix
+2
-2
nixos/modules/services/networking/nntp-proxy.nix
···
148
148
};
149
149
150
150
verbosity = mkOption {
151
151
-
type = types.str;
151
151
+
type = types.enum [ "error" "warning" "notice" "info" "debug" ];
152
152
default = "info";
153
153
example = "error";
154
154
description = ''
155
155
-
Verbosity level (error, warning, notice, info, debug)
155
155
+
Verbosity level
156
156
'';
157
157
};
158
158