2022-12-31 11:52:38 +01:00
|
|
|
{ lib, ... }:
|
2022-05-23 19:06:12 +02:00
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
../../common/pc/laptop/ssd
|
|
|
|
../../common/cpu/intel
|
2022-11-13 02:54:59 +01:00
|
|
|
../../common/gpu/nvidia/prime.nix
|
2022-05-23 19:06:12 +02:00
|
|
|
../../common/pc/laptop
|
|
|
|
];
|
|
|
|
|
|
|
|
boot.kernelParams = [
|
|
|
|
# For Power consumption in case of NVME SSD
|
|
|
|
# was installed.
|
|
|
|
"nvme.noacpi=1"
|
|
|
|
|
|
|
|
# For fixing interferences with Fn- action keys
|
|
|
|
"video.report_key_events=0"
|
|
|
|
];
|
|
|
|
|
|
|
|
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";
|
|
|
|
};
|
|
|
|
}
|