41 lines
857 B
Nix
41 lines
857 B
Nix
|
{ pkgs
|
||
|
, config
|
||
|
, ...
|
||
|
}:
|
||
|
|
||
|
let
|
||
|
# nvidia package to patch
|
||
|
package = config.boot.kernelPackages.nvidiaPackages.stable;
|
||
|
in
|
||
|
{
|
||
|
hardware.opengl = {
|
||
|
enable = true;
|
||
|
driSupport = true;
|
||
|
driSupport32Bit = true;
|
||
|
};
|
||
|
|
||
|
# TODO fix hybrid optimus shit mode... add "intel" for inner display to work
|
||
|
services.xserver.videoDrivers = [ "nvidia" "intel" ];
|
||
|
|
||
|
|
||
|
nixpkgs.config.cudaSupport = true;
|
||
|
hardware.nvidia = {
|
||
|
modesetting.enable = true;
|
||
|
prime =
|
||
|
{
|
||
|
sync.enable = false;
|
||
|
nvidiaBusId = "PCI:1:0:0";
|
||
|
intelBusId = "PCI:0:2:0";
|
||
|
};
|
||
|
|
||
|
powerManagement.enable = false;
|
||
|
powerManagement.finegrained = false;
|
||
|
open = false;
|
||
|
nvidiaSettings = true;
|
||
|
package = pkgs.nvidia-patch.patch-nvenc (pkgs.nvidia-patch.patch-fbc package);
|
||
|
#package = config.boot.kernelPackages.nvidiaPackages.stable;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
|