Fixed workflow; removed unnecessary stuff; add iso builder
CI / check (push) Successful in 5m51s

This commit is contained in:
2026-06-22 22:33:33 +02:00
parent 2505485996
commit c00b9dc204
16 changed files with 113 additions and 173 deletions
+30 -27
View File
@@ -5,38 +5,41 @@
];
boot = {
loader.grub = {
enable = true;
device = "/dev/vda";
};
loader.grub = {
enable = true;
device = "/dev/vda";
};
initrd = {
availableKernelModules = [
"ata_piix"
"virtio_pci"
"virtio_scsi"
"virtio_blk"
"xhci_pci"
"sr_mod"
];
kernelModules = [ ];
};
kernelModules = [ ];
extraModulePackages = [ ];
};
initrd = {
availableKernelModules = [
"ata_piix"
"virtio_pci"
"virtio_scsi"
"virtio_blk"
"xhci_pci"
"sr_mod"
];
kernelModules = [ ];
};
kernelModules = [ ];
extraModulePackages = [ ];
};
fileSystems = {
"/" = {
device = "/dev/disk/by-label/NIXROOT";
fsType = "ext4";
};
"/" = {
device = "/dev/disk/by-label/NIXROOT";
fsType = "ext4";
};
"/boot" = {
device = "/dev/disk/by-label/NIXBOOT";
fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" ];
"/boot" = {
device = "/dev/disk/by-label/NIXBOOT";
fsType = "vfat";
options = [
"fmask=0022"
"dmask=0022"
];
};
};
};
swapDevices = [ ];