Skip to content

Commit

Permalink
XPS 9560: Remove lib.mkDefault on mergable options
Browse files Browse the repository at this point in the history
  • Loading branch information
Lyndeno authored and Mic92 committed Aug 9, 2023
1 parent 1b3c128 commit 8ff521a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions dell/xps/15-9560/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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";

Expand Down
2 changes: 1 addition & 1 deletion dell/xps/15-9560/xps-common.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{ lib, ... }:

{
boot.kernelParams = lib.mkDefault [ "acpi_rev_override" ];
boot.kernelParams = [ "acpi_rev_override" ];

# This will save you money and possibly your life!
services.thermald.enable = lib.mkDefault true;
Expand Down

0 comments on commit 8ff521a

Please sign in to comment.