mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-08 20:19:40 +01:00
16 lines
265 B
Nix
16 lines
265 B
Nix
|
{ ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
../../common/cpu/amd
|
||
|
../../common/gpu/nvidia/prime.nix
|
||
|
../../common/pc/laptop
|
||
|
../../common/pc/ssd
|
||
|
];
|
||
|
|
||
|
hardware.nvidia.prime = {
|
||
|
amdgpuBusId = "PCI:5:0:0";
|
||
|
nvidiaBusId = "PCI:1:0:0";
|
||
|
};
|
||
|
}
|