nixos-hardware/asus/fa507nv/default.nix

22 lines
491 B
Nix
Raw Normal View History

2024-03-18 16:50:42 -04:00
{ lib, pkgs, ... }:
{
imports = [
../../common/cpu/amd
../../common/cpu/amd/raphael/igpu.nix
../../common/cpu/amd/pstate.nix
../../common/gpu/nvidia
../../common/gpu/nvidia/prime-sync.nix
../../common/hidpi.nix
../../common/pc/laptop
../../common/pc/ssd
];
2024-04-23 12:00:10 -04:00
boot.kernelPackages = lib.mkDefault pkgs.linuxPackages_latest;
2024-03-18 16:50:42 -04:00
hardware.nvidia.prime = {
amdgpuBusId = "PCI:54:0:0";
nvidiaBusId = "PCI:1:0:0";
};
}