1
0
Fork 0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-10-18 19:07:23 +02:00
nixos-hardware/dell/precision/5560/default.nix

22 lines
427 B
Nix
Raw Normal View History

2024-09-23 11:48:34 +02:00
{ lib, ... }:
2024-09-12 18:20:09 +02:00
{
imports = [
../../../common/pc/laptop
../../../common/pc/laptop/ssd
../../../common/cpu/intel
../../../common/gpu/intel/tiger-lake
../../../common/gpu/nvidia/turing
];
hardware.enableRedistributableFirmware = lib.mkDefault true;
boot = {
2024-09-23 11:48:34 +02:00
kernelParams = [ "i915.modeset=1" ];
2024-09-12 18:20:09 +02:00
};
2024-09-23 11:48:34 +02:00
hardware.nvidia.prime = {
intelBusId = "PCI:0:2:0";
nvidiaBusId = "PCI:1:0:0";
};
2024-09-12 18:20:09 +02:00
}