nixos: Add -verbose to xserverArgs example

This commit is contained in:
Luca Bruno 2014-12-22 21:00:32 +01:00
parent c184d7e7e0
commit 79209e30b5

View File

@ -189,7 +189,7 @@ in
xserverArgs = mkOption { xserverArgs = mkOption {
type = types.listOf types.str; type = types.listOf types.str;
default = []; default = [];
example = [ "-ac" "-logverbose" "-nolisten tcp" ]; example = [ "-ac" "-logverbose" "-verbose" "-nolisten tcp" ];
description = "List of arguments for the X server."; description = "List of arguments for the X server.";
apply = toString; apply = toString;
}; };