make genepi boot again

This commit is contained in:
2025-06-05 20:42:15 +02:00
parent 03c97d8431
commit 628b996be4
4 changed files with 42 additions and 16 deletions

View File

@@ -8,12 +8,18 @@
];
boot.loader = {
grub.enable = false;
generic-extlinux-compatible.enable = true;
generic-extlinux-compatible.enable = false;
efi.canTouchEfiVariables = true;
systemd-boot.enable = true;
};
nixpkgs.overlays = [
(final: super: {
makeModulesClosure = x: super.makeModulesClosure (x // { allowMissing = true; });
})
];
boot.supportedFilesystems = [
"btrfs"
"vfat"
];
}