mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 16:49:40 +01:00
28 lines
No EOL
619 B
Nix
28 lines
No EOL
619 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../../../../common/cpu/amd
|
|
../../../../common/cpu/amd/pstate.nix
|
|
../../../../common/gpu/amd
|
|
../../../../common/gpu/nvidia/prime.nix
|
|
../../../../common/pc/laptop
|
|
../../../../common/pc/laptop/ssd
|
|
];
|
|
|
|
services.xserver.videoDrivers = [ "nvidia" ];
|
|
boot.initrd.kernelModules = [ "amdgpu" ];
|
|
|
|
hardware = {
|
|
nvidia = {
|
|
modesetting.enable = lib.mkDefault true;
|
|
powerManagement.enable = lib.mkDefault true;
|
|
open = lib.mkDefault false;
|
|
|
|
prime = {
|
|
amdgpuBusId = "PCI:5:0:0";
|
|
nvidiaBusId = "PCI:1:0:0";
|
|
};
|
|
};
|
|
};
|
|
} |