mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-23 11:29:42 +01:00
xps-15-9560: disable broken bumblebee for now
Looks like it fails to evaluate in nixpkgs just now
This commit is contained in:
parent
af21850d3d
commit
b34a6075e9
1 changed files with 23 additions and 9 deletions
|
@ -1,13 +1,27 @@
|
||||||
{ lib, pkgs, ... }:
|
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
../../../common/cpu/intel
|
../../../common/cpu/intel
|
||||||
../../../common/cpu/intel/kaby-lake
|
../../../common/cpu/intel/kaby-lake
|
||||||
../../../common/pc/laptop
|
../../../common/pc/laptop
|
||||||
./xps-common.nix
|
./xps-common.nix
|
||||||
|
|
||||||
|
# FIXME: remove this when bumblebee works again
|
||||||
|
../../../common/gpu/nvidia/disable.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
|
/* Bumblebee seems to fail to evaluate:
|
||||||
|
(stack trace truncated; use '--show-trace' to show the full trace)
|
||||||
|
|
||||||
|
error: assertion '(useSettings -> (! libsOnly))' failed
|
||||||
|
|
||||||
|
at /home/joerg/git/nixpkgs/pkgs/os-specific/linux/nvidia-x11/generic.nix:61:1:
|
||||||
|
|
||||||
|
60|
|
||||||
|
61| assert useSettings -> !libsOnly;
|
||||||
|
| ^
|
||||||
|
62| assert !libsOnly -> kernel != null;
|
||||||
|
|
||||||
# This configuration makes intel default and optionaly applications could run nvidia with optirun.
|
# This configuration makes intel default and optionaly applications could run nvidia with optirun.
|
||||||
# To Optimize for your use case import intel or nvidia only configuration instead
|
# To Optimize for your use case import intel or nvidia only configuration instead
|
||||||
# xps-9560/intel
|
# xps-9560/intel
|
||||||
|
@ -18,8 +32,8 @@
|
||||||
##### bumblebee working, needs reboot to take affect and to use it run: optirun "<application>"
|
##### bumblebee working, needs reboot to take affect and to use it run: optirun "<application>"
|
||||||
services.xserver.videoDrivers = [ "intel" "nvidia" ];
|
services.xserver.videoDrivers = [ "intel" "nvidia" ];
|
||||||
boot.blacklistedKernelModules = [ "nouveau" "bbswitch" ];
|
boot.blacklistedKernelModules = [ "nouveau" "bbswitch" ];
|
||||||
boot.extraModulePackages = [ pkgs.linuxPackages.nvidia_x11 ];
|
boot.extraModulePackages = [ config.boot.kernelPackages.nvidia_x11 ];
|
||||||
hardware.bumblebee.enable = lib.mkDefault true;
|
hardware.bumblebee.enable = lib.mkDefault true;
|
||||||
hardware.bumblebee.pmMethod = lib.mkDefault "none";
|
hardware.bumblebee.pmMethod = lib.mkDefault "none";
|
||||||
|
*/
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue