1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-07-25 22:14:14 +02:00
nixos-hardware/asus/fx506hm/default.nix

25 lines
370 B
Nix
Raw Normal View History

2024-05-19 23:55:37 +02:00
{ lib, ... }:
{
imports =
[
../../common/cpu/intel
../../common/gpu/nvidia
../../common/gpu/nvidia/prime.nix
../../common/pc/laptop
../../common/pc/ssd
../battery.nix
2024-05-20 12:15:58 +02:00
];
2024-05-19 23:55:37 +02:00
hardware.nvidia =
{
modesetting.enable = lib.mkDefault true;
prime =
{
intelBusId = "PCI:0:2:0";
nvidiaBusId = "PCI:1:0:0";
};
};
}