dotfiles/system/hardware/hp_probook_g0.nix

18 lines
370 B
Nix
Raw Normal View History

2023-05-17 07:16:03 +07:00
{ hardware
, ... }:
{
imports = with hardware; [
common-pc-hdd
common-cpu-intel
common-gpu-amd
common-pc-laptop
];
common.resolution = "1366x768";
boot = {
initrd.availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "usb_storage" "sd_mod" "sr_mod" "rtsx_pci_sdmmc" ];
kernelModules = [ "kvm-intel" ];
vfio.intelCpu = true;
};
}