1
0
Fork 0
puter/hosts/abacus/hardware.nix

19 lines
308 B
Nix
Raw Normal View History

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