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