svn path=/nixos/trunk/; revision=22537
This commit is contained in:
Eelco Dolstra 2010-07-08 16:21:55 +00:00
parent 5c0f6619cf
commit 54a4eead20
2 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ in
networking.WLANInterface = mkOption {
default = "wlan0";
description = ''
The interface wpa_supplicant will use, if enableWLAN is enabled.
The interface wpa_supplicant will use, if enableWLAN is set.
'';
};

View File

@ -121,7 +121,7 @@ let kernel = config.boot.kernelPackages.kernel; in
system.modulesTree = [ kernel ] ++ config.boot.extraModulePackages;
boot.kernelParams =
[ "splash=verbose"] ++
[ "splash=verbose" ] ++
optional config.boot.vesa "vga=0x317";
boot.kernelModules = [ "loop" ];