types.uniq types.bool -> types.bool

This commit is contained in:
Eelco Dolstra
2015-06-15 18:10:26 +02:00
parent 9366af1b94
commit c738b309ee
25 changed files with 37 additions and 37 deletions
@@ -15,7 +15,7 @@ in
enable = mkOption {
default = false;
type = types.uniq types.bool;
type = types.bool;
description = ''
If true, enable cgit (fast web interface for git repositories) as a
sub-service in lighttpd. cgit will be accessible at
@@ -122,7 +122,7 @@ in
enable = mkOption {
default = false;
type = types.uniq types.bool;
type = types.bool;
description = ''
Enable the lighttpd web server.
'';
@@ -146,7 +146,7 @@ in
mod_userdir = mkOption {
default = false;
type = types.uniq types.bool;
type = types.bool;
description = ''
If true, requests in the form /~user/page.html are rewritten to take
the file public_html/page.html from the home directory of the user.
@@ -168,7 +168,7 @@ in
mod_status = mkOption {
default = false;
type = types.uniq types.bool;
type = types.bool;
description = ''
Show server status overview at /server-status, statistics at
/server-statistics and list of loaded modules at /server-config.
@@ -17,7 +17,7 @@ in
enable = mkOption {
default = false;
type = types.uniq types.bool;
type = types.bool;
description = ''
If true, enable gitweb in lighttpd. Access it at http://yourserver/gitweb
'';