1
0
Fork 0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-11-01 16:49:40 +01:00
nixos-hardware/dell/inspiron/7460/default.nix

22 lines
419 B
Nix
Raw Normal View History

{ lib, ... }:
{
imports = [
../../../common/pc/laptop
../../../common/pc/laptop/ssd
../../../common/gpu/intel/kaby-lake
../../../common/gpu/nvidia/maxwell
../../../common/gpu/nvidia/prime.nix
];
hardware.nvidia.prime = {
intelBusId = "PCI:0:2:0";
nvidiaBusId = "PCI:1:0:0";
};
services = {
thermald.enable = lib.mkDefault true;
fwupd.enable = lib.mkDefault true;
};
}