mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 00:29:40 +01:00
26 lines
493 B
Nix
26 lines
493 B
Nix
|
{ lib, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
../../../common/cpu/intel
|
||
|
../../../common/gpu/nvidia/prime.nix
|
||
|
../../../common/pc/laptop
|
||
|
../../../common/pc/laptop/ssd
|
||
|
../../../common/pc/laptop/hdd
|
||
|
];
|
||
|
|
||
|
hardware = {
|
||
|
nvidia = {
|
||
|
modesetting.enable = lib.mkDefault true;
|
||
|
powerManagement.enable = lib.mkDefault true;
|
||
|
|
||
|
prime = {
|
||
|
intelBusId = "PCI:0:2:0";
|
||
|
nvidiaBusId = "PCI:1:0:0";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
services.thermald.enable = lib.mkDefault true;
|
||
|
}
|