mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 16:49:40 +01:00
44 lines
957 B
Nix
44 lines
957 B
Nix
# Including this file will enable the NVidia driver, and PRIME offload
|
|
|
|
{ lib, pkgs, ... }:
|
|
|
|
let
|
|
inherit (lib) mkDefault;
|
|
|
|
in {
|
|
imports = [
|
|
../shared.nix
|
|
## "prime.nix" loads this, aleady:
|
|
# ../../../../common/gpu/nvidia
|
|
../../../../../common/gpu/nvidia/prime.nix
|
|
../../../../../common/gpu/nvidia/ampere
|
|
];
|
|
|
|
# NVIDIA GeForce RTX 3050 Mobile (Ampere)
|
|
services.xserver.videoDrivers = mkDefault [ "nvidia" ];
|
|
|
|
hardware = {
|
|
## Enable the Nvidia card, as well as Prime and Offload:
|
|
amdgpu.initrd.enable = true;
|
|
|
|
nvidia = {
|
|
modesetting.enable = true;
|
|
nvidiaSettings = true;
|
|
|
|
prime = {
|
|
offload = {
|
|
enable = true;
|
|
enableOffloadCmd = true;
|
|
};
|
|
amdgpuBusId = "PCI:4:0:0";
|
|
nvidiaBusId = "PCI:1:0:0";
|
|
};
|
|
|
|
powerManagement = {
|
|
enable = true;
|
|
# Doesn't seem to be reliable, yet?
|
|
# finegrained = true
|
|
};
|
|
};
|
|
};
|
|
}
|