mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 16:49:40 +01:00
21 lines
428 B
Nix
21 lines
428 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../../../common/cpu/amd
|
|
../../../common/gpu/nvidia/prime.nix
|
|
../../../common/gpu/nvidia/turing
|
|
../../../common/pc/laptop
|
|
../../../common/pc/laptop/ssd
|
|
];
|
|
|
|
# Specify bus id of Nvidia and Intel graphics.
|
|
hardware.nvidia.prime = {
|
|
amdgpuBusId = "PCI:6:0:0";
|
|
nvidiaBusId = "PCI:1:0:0";
|
|
};
|
|
|
|
# Cooling management
|
|
services.thermald.enable = lib.mkDefault true;
|
|
|
|
}
|