1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

* Disable wireless in a VM to prevent wpa_supplicant from flooding the

log.

svn path=/nixos/trunk/; revision=17010
This commit is contained in:
Eelco Dolstra 2009-09-10 14:43:11 +00:00
parent 5d55df7abf
commit 22693ae44e

View file

@ -137,4 +137,7 @@ in
# video driver the host uses.
services.xserver.videoDriver = pkgs.lib.mkOverride 50 {} "vesa";
services.xserver.defaultDepth = pkgs.lib.mkOverride 50 {} 16;
# Wireless won't work in the VM.
networking.enableWLAN = pkgs.lib.mkOverride 50 {} false;
}