1
0
mirror of https://github.com/kmein/niveum synced 2026-03-20 20:01:08 +01:00
This commit is contained in:
2025-12-27 22:22:54 +01:00
parent cb0307e8bf
commit c3db0404b3
139 changed files with 2630 additions and 1976 deletions

View File

@@ -4,7 +4,8 @@
pkgs,
modulesPath,
...
}: {
}:
{
imports = [
(modulesPath + "/profiles/qemu-guest.nix")
];
@@ -18,7 +19,10 @@
efi.canTouchEfiVariables = true;
};
initrd = {
availableKernelModules = ["virtio_pci" "usbhid"];
availableKernelModules = [
"virtio_pci"
"usbhid"
];
};
kernelModules = [
"console=ttyS0"
@@ -26,7 +30,7 @@
"nvme.shutdown_timeout=10"
"libiscsi.debug_libiscsi_eh=1"
];
extraModulePackages = [];
extraModulePackages = [ ];
};
fileSystems."/" = {
@@ -39,5 +43,5 @@
fsType = "vfat";
};
swapDevices = [];
swapDevices = [ ];
}