nixos support for nvidia optimus

currently, only support for fully disabling nvidia is provided, which
is helpful for saving power/heat.

In the future, this should be extended so we can choose:

- nvidia only  (choose between nouveau/nvidia driver)
- IGP only
- Hybrid (choose between nouveau/nvidia driver, use the "bumblebee" package/daemon)

svn path=/nixos/trunk/; revision=32085
wip/yesman
Peter Simons 13 years ago
parent 49a3e57d43
commit 89d5aa4dd2
  1. 1
      modules/module-list.nix
  2. 40
      modules/services/hardware/nvidia-optimus.nix

@ -70,6 +70,7 @@
./services/hardware/acpid.nix
./services/hardware/bluetooth.nix
./services/hardware/hal.nix
./services/hardware/nvidia-optimus.nix
./services/hardware/pcscd.nix
./services/hardware/sane.nix
./services/hardware/udev.nix

@ -0,0 +1,40 @@
{pkgs, config, ...}:
let kernel = config.boot.kernelPackages;
in
{
###### interface
options = {
hardware.nvidiaOptimus.disable = pkgs.lib.mkOption {
default = false;
type = pkgs.lib.types.bool;
description = ''
completely disable the nvidia gfx chip (saves power / heat) and just use IGP
'';
};
};
###### implementation
config = pkgs.lib.mkIf config.hardware.nvidiaOptimus.disable {
boot.blacklistedKernelModules = ["nouveau" "nvidia" "nvidiafb"];
boot.kernelModules = [ "bbswitch" ];
boot.extraModulePackages = [ kernel.bbswitch ];
jobs.bbswitch = {
name = "bbswitch";
description = "turn off nvidia card";
startOn = "stopped udevtrigger";
exec = "discrete_vga_poweroff";
path = [kernel.bbswitch];
task = true;
};
};
}
Loading…
Cancel
Save