mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-10 04:59:40 +01:00
21 lines
384 B
Nix
21 lines
384 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
|
||
|
];
|
||
|
|
||
|
hardware.nvidia = {
|
||
|
modesetting.enable = true;
|
||
|
prime = {
|
||
|
amdgpuBusId = "PCI:5:0:0";
|
||
|
nvidiaBusId = "PCI:1:0:0";
|
||
|
};
|
||
|
};
|
||
|
}
|