srx-platform-nix/hosts/srxgp01/hardware.nix

22 lines
374 B
Nix
Raw Normal View History

2024-07-04 13:47:18 +02:00
{ modulesPath, ... }:
{
imports = [
(modulesPath + "/profiles/qemu-guest.nix")
];
boot = {
initrd = {
availableKernelModules = [
"xhci_pci"
"virtio_scsi"
"sr_mod"
];
kernelModules = [ ];
};
loader.systemd-boot.enable = true;
zfs.devNodes = "/dev/disk/by-uuid";
};
services.qemuGuest.enable = true;
}