mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 16:49:40 +01:00
27 lines
563 B
Nix
27 lines
563 B
Nix
|
{ lib, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
../../../common/pc/laptop/ssd
|
||
|
../../../common/cpu/intel
|
||
|
../../../common/gpu/intel/comet-lake
|
||
|
../../../common/gpu/nvidia/prime.nix
|
||
|
../../../common/gpu/nvidia/turing
|
||
|
../../../common/pc/laptop
|
||
|
];
|
||
|
|
||
|
hardware.bluetooth.enable = lib.mkDefault true;
|
||
|
|
||
|
hardware.graphics.enable = lib.mkDefault true;
|
||
|
|
||
|
hardware.nvidia = {
|
||
|
prime = {
|
||
|
# Bus ID of the Intel GPU.
|
||
|
intelBusId = lib.mkDefault "PCI:0:2:0";
|
||
|
|
||
|
# Bus ID of the NVIDIA GPU.
|
||
|
nvidiaBusId = lib.mkDefault "PCI:1:0:0";
|
||
|
};
|
||
|
};
|
||
|
}
|