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" ];