mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-29 16:24:10 +00:00
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
This commit is contained in:
parent
49a3e57d43
commit
89d5aa4dd2
@ -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
|
||||
|
40
modules/services/hardware/nvidia-optimus.nix
Normal file
40
modules/services/hardware/nvidia-optimus.nix
Normal file
@ -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…
Reference in New Issue
Block a user