mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-10 04:59:40 +01:00
41 lines
672 B
Nix
41 lines
672 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
{
|
||
|
imports = [
|
||
|
../.
|
||
|
];
|
||
|
boot.initrd.kernelModules = [ "nvidia" ];
|
||
|
|
||
|
hardware.opengl = {
|
||
|
enable = true;
|
||
|
driSupport = true;
|
||
|
driSupport32Bit = true;
|
||
|
extraPackages = with pkgs; [
|
||
|
vaapiVdpau
|
||
|
];
|
||
|
};
|
||
|
|
||
|
services.xserver.videoDrivers = ["nvidia"];
|
||
|
|
||
|
hardware.nvidia = {
|
||
|
|
||
|
modesetting.enable = true;
|
||
|
|
||
|
powerManagement.finegrained = true;
|
||
|
|
||
|
nvidiaSettings = true;
|
||
|
|
||
|
package = config.boot.kernelPackages.nvidiaPackages.stable;
|
||
|
prime = {
|
||
|
intelBusId = "PCI:0:2:0";
|
||
|
nvidiaBusId = "PCI:1:0:0";
|
||
|
offload = {
|
||
|
enable = true;
|
||
|
enableOffloadCmd = true;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|
||
|
|
||
|
|
||
|
|