about summary refs log tree commit diff
path: root/nixos/modules/hardware/video
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2016-11-08 18:18:42 +0300
committerNikolay Amiantov <ab@fmap.me>2016-11-20 19:08:52 +0300
commit4111710b8e27479000f5062b7f76f2f44c1a0582 (patch)
treecc16405efc6d94cf4bc5c65aad9be4d270e5a643 /nixos/modules/hardware/video
parent3a05ea53769ad6ac1b2c824f61336a8c165f079a (diff)
downloadnixlib-4111710b8e27479000f5062b7f76f2f44c1a0582.tar
nixlib-4111710b8e27479000f5062b7f76f2f44c1a0582.tar.gz
nixlib-4111710b8e27479000f5062b7f76f2f44c1a0582.tar.bz2
nixlib-4111710b8e27479000f5062b7f76f2f44c1a0582.tar.lz
nixlib-4111710b8e27479000f5062b7f76f2f44c1a0582.tar.xz
nixlib-4111710b8e27479000f5062b7f76f2f44c1a0582.tar.zst
nixlib-4111710b8e27479000f5062b7f76f2f44c1a0582.zip
bumblebee service: blacklist additional nvidia modules
Diffstat (limited to 'nixos/modules/hardware/video')
-rw-r--r--nixos/modules/hardware/video/bumblebee.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/hardware/video/bumblebee.nix b/nixos/modules/hardware/video/bumblebee.nix
index 69db518ab21c..76d122ab2124 100644
--- a/nixos/modules/hardware/video/bumblebee.nix
+++ b/nixos/modules/hardware/video/bumblebee.nix
@@ -62,7 +62,7 @@ in
   };
 
   config = mkIf config.hardware.bumblebee.enable {
-    boot.blacklistedKernelModules = [ "nouveau" "nvidia" ];
+    boot.blacklistedKernelModules = [ "nvidia-drm" "nvidia" "nouveau" ];
     boot.kernelModules = [ "bbswitch" ];
     boot.extraModulePackages = [ kernel.bbswitch ] ++ optional useNvidia kernel.nvidia_x11;