mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-04 01:07:14 +08:00
XPS 9560: Remove lib.mkDefault on mergable options
This commit is contained in:
committed by
Jörg Thalheim
parent
1b3c128388
commit
8ff521acd2
@@ -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";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user