From 54a4eead20134108659b7ced0787ea7f06c77edc Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 8 Jul 2010 16:21:55 +0000 Subject: [PATCH] * Typos. svn path=/nixos/trunk/; revision=22537 --- modules/services/networking/wpa_supplicant.nix | 2 +- modules/system/boot/kernel.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/services/networking/wpa_supplicant.nix b/modules/services/networking/wpa_supplicant.nix index 52241da023a5..a349a721b120 100644 --- a/modules/services/networking/wpa_supplicant.nix +++ b/modules/services/networking/wpa_supplicant.nix @@ -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. ''; }; diff --git a/modules/system/boot/kernel.nix b/modules/system/boot/kernel.nix index 742ce3f223da..0dd1d93dd431 100644 --- a/modules/system/boot/kernel.nix +++ b/modules/system/boot/kernel.nix @@ -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" ];