puter/hosts/headless/abacus/hardware.nix

12 lines
282 B
Nix
Raw Normal View History

2024-12-01 03:05:16 +00:00
{modulesPath, ...}: {
2025-03-01 21:21:00 +00:00
imports = [
"${modulesPath}/profiles/qemu-guest.nix"
];
2024-12-01 03:05:16 +00:00
nixpkgs.hostPlatform = "aarch64-linux";
boot.initrd.availableKernelModules = ["xhci_pci" "virtio_pci" "virtio_scsi" "usbhid" "sr_mod"];
powerManagement.cpuFreqGovernor = "performance";
}