1
0
Fork 0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-10-18 19:07:23 +02:00
nixos-hardware/dell/inspiron/7460/default.nix
Glauber Santana a8dd1b2199
add dell inspiron 7460 (#1177)
Co-authored-by: Jörg Thalheim <Mic92@users.noreply.github.com>
2024-10-12 12:39:41 +02:00

21 lines
419 B
Nix

{ 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;
};
}