AquaticOS/modules/hosts/aquaticTest/hardware.nix

11 lines
No EOL
286 B
Nix

{ ... }:
{
flake.modules.nixos.aquaticTest = {
boot.initrd.availableKernelModules = [ "ata_piix" "ohci_pci" "ehci_pci" "ahci" "sd_mod" "sr_mod" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ ];
boot.extraModulePackages = [ ];
swapDevices = [ ];
};
}