fix building installer iso
All checks were successful
checks / check-links (pull_request) Successful in 23s
checks / checks-impure (pull_request) Successful in 2m4s
checks / checks (pull_request) Successful in 3m54s

This commit is contained in:
Jörg Thalheim 2024-03-07 17:24:57 +01:00
parent 3cc97ebc56
commit 4dfe4ecfa6

View File

@ -12,7 +12,12 @@ let
nixpkgs.pkgs = self.inputs.nixpkgs.legacyPackages.x86_64-linux;
};
installer = lib.nixosSystem { modules = [ installerModule ]; };
installer = lib.nixosSystem {
modules = [
installerModule
{ disko.memSize = 4096; } # FIXME: otherwise the image builder goes OOM
];
};
clan = self.lib.buildClan {
clanName = "clan-core";