nixcfg/hosts/mauville/hardware.nix

21 lines
310 B
Nix
Raw Normal View History

{
2024-04-07 22:16:33 -04:00
config,
inputs,
2024-04-07 22:16:33 -04:00
lib,
pkgs,
2024-04-07 22:16:33 -04:00
...
}: {
boot.initrd.availableKernelModules = ["xhci_pci" "ahci" "nvme" "usbhid" "sd_mod"];
hardware.enableAllFirmware = true;
ar.hardware = {
enable = true;
cpu.amd = true;
gpu.amd = true;
laptop = false;
ssd = true;
sound = true;
2024-03-24 14:06:24 -04:00
};
}