srx-platform-nix/hosts/srxk8s00/hardware.nix
Sebastian Wendel b910dc465e first commit
2024-07-04 13:47:18 +02:00

20 lines
352 B
Nix

{ modulesPath, ... }:
{
imports = [
(modulesPath + "/installer/scan/not-detected.nix")
(modulesPath + "/profiles/qemu-guest.nix")
];
boot = {
initrd = {
availableKernelModules = [
"sr_mod"
"virtio_scsi"
"xhci_pci"
];
kernelModules = [ ];
};
loader.systemd-boot.enable = true;
};
}