feat: add vesuvio

This commit is contained in:
uku 2024-03-24 14:02:03 +01:00 committed by uku
parent 5917dab7e7
commit 9eadd0a4d9
Signed by: uku
SSH key fingerprint: SHA256:4P0aN6M8ajKukNi6aPOaX0LacanGYtlfjmN+m/sHY/o
21 changed files with 251 additions and 153 deletions

View file

@ -0,0 +1,26 @@
{modulesPath, ...}: {
imports = [(modulesPath + "/profiles/qemu-guest.nix")];
boot = {
loader.grub = {
efiSupport = true;
efiInstallAsRemovable = true;
device = "nodev";
};
initrd = {
availableKernelModules = ["ata_piix" "uhci_hcd" "xen_blkfront"];
kernelModules = ["nvme"];
};
};
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/6FB6-65E7";
fsType = "vfat";
};
fileSystems."/" = {
device = "/dev/sda1";
fsType = "ext4";
};
}