From 1d09ad240a5a0641fd2f6574b8211ccd5361ae3d Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 4 Jul 2011 15:51:38 +0000 Subject: [PATCH] * Don't set defaultSkin to "default" because that's a horrible skin (does it even exist?). Use "" instead (which is really "monobook"). svn path=/nixos/trunk/; revision=27604 --- modules/services/web-servers/apache-httpd/mediawiki.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/services/web-servers/apache-httpd/mediawiki.nix b/modules/services/web-servers/apache-httpd/mediawiki.nix index 2c592c00634..c5c892825f4 100644 --- a/modules/services/web-servers/apache-httpd/mediawiki.nix +++ b/modules/services/web-servers/apache-httpd/mediawiki.nix @@ -254,9 +254,9 @@ in }; defaultSkin = mkOption { - default = "standard"; + default = ""; example = "nostalgia"; - description = "Default skin: you can change the default skin."; + description = "Set this value to change the default skin used by MediaWiki."; }; extraConfig = mkOption {