mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 13:43:56 -05:00
19 lines
371 B
Nix
19 lines
371 B
Nix
{
|
|
config,
|
|
inputs,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
inputs.nixhw.nixosModules.common-amd-cpu
|
|
inputs.nixhw.nixosModules.common-amd-gpu
|
|
inputs.nixhw.nixosModules.common-bluetooth
|
|
inputs.nixhw.nixosModules.common-ssd
|
|
];
|
|
|
|
boot.initrd.availableKernelModules = ["xhci_pci" "ahci" "nvme" "usbhid" "sd_mod"];
|
|
|
|
hardware.enableAllFirmware = true;
|
|
}
|