2024-03-03 21:42:59 -05:00
|
|
|
{
|
2024-04-07 22:16:33 -04:00
|
|
|
config,
|
2024-06-14 21:18:00 -04:00
|
|
|
inputs,
|
2024-04-07 22:16:33 -04:00
|
|
|
lib,
|
2024-06-14 21:18:00 -04:00
|
|
|
pkgs,
|
2024-04-07 22:16:33 -04:00
|
|
|
...
|
|
|
|
}: {
|
2024-07-06 18:05:20 -04:00
|
|
|
imports = [
|
|
|
|
inputs.nixhw.nixosModules.common-amd-cpu
|
|
|
|
inputs.nixhw.nixosModules.common-amd-gpu
|
|
|
|
inputs.nixhw.nixosModules.common-bluetooth
|
|
|
|
inputs.nixhw.nixosModules.common-ssd
|
|
|
|
];
|
|
|
|
|
2024-06-26 22:13:02 -04:00
|
|
|
boot.initrd.availableKernelModules = ["xhci_pci" "ahci" "nvme" "usbhid" "sd_mod"];
|
2024-03-03 21:42:59 -05:00
|
|
|
|
2024-06-26 22:13:02 -04:00
|
|
|
hardware.enableAllFirmware = true;
|
2024-03-03 21:42:59 -05:00
|
|
|
}
|