XPS 9560: Remove lib.mkDefault on mergable options

This commit is contained in:
Lyndon Sanche
2023-08-08 12:04:08 -06:00
committed by Jörg Thalheim
parent 1b3c128388
commit 8ff521acd2
2 changed files with 4 additions and 4 deletions

View File

@@ -15,9 +15,9 @@
##### bumblebee working, needs reboot to take affect and to use it run: optirun "<application>"
services.xserver.videoDrivers = lib.mkDefault [ "intel" "nvidia" ];
boot.blacklistedKernelModules = lib.mkDefault [ "nouveau" "bbswitch" ];
boot.extraModulePackages = lib.mkDefault [ pkgs.linuxPackages.nvidia_x11 ];
services.xserver.videoDrivers = [ "intel" "nvidia" ];
boot.blacklistedKernelModules = [ "nouveau" "bbswitch" ];
boot.extraModulePackages = [ pkgs.linuxPackages.nvidia_x11 ];
hardware.bumblebee.enable = lib.mkDefault true;
hardware.bumblebee.pmMethod = lib.mkDefault "none";