Monorepo for Aesthetic.Computer aesthetic.computer
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: enlarge nix boot partition for raw usb image

+8 -2
+1 -1
fedac/native/ac-os
··· 704 704 log "Building media helper image (${MEDIA_HELPER_IMAGE})..." 705 705 local repo_root 706 706 repo_root="$(cd "${SCRIPT_DIR}/../.." && pwd)" 707 - sudo docker build \ 707 + sudo env DOCKER_BUILDKIT=0 docker build \ 708 708 -t "${MEDIA_HELPER_IMAGE}" \ 709 709 -f "${MEDIA_HELPER_DOCKERFILE}" \ 710 710 "${repo_root}" >/dev/null
+3
fedac/nixos/flake.nix
··· 56 56 installBootLoader = true; 57 57 touchEFIVars = false; 58 58 copyChannel = false; 59 + # The generic "boots anywhere" initrd is large, so give the ESP 60 + # enough room for the kernel, initrd, and GRUB assets. 61 + bootSize = "2048M"; 59 62 diskSize = "auto"; 60 63 additionalSpace = "2G"; 61 64 memSize = 4096;
+4 -1
oven/native-builder.mjs
··· 654 654 "build", "-t", MEDIA_HELPER_IMAGE, 655 655 "-f", path.join(repoDir, "fedac/native/Dockerfile.flash-helper"), 656 656 repoDir, 657 - ], repoDir); 657 + ], repoDir, { 658 + ...nixEnv, 659 + DOCKER_BUILDKIT: "0", 660 + }); 658 661 659 662 addLogLine(job, "stdout", "Phase N: appending AC-MAC + ACDATA partitions..."); 660 663 await runPhase(job, "nix-package", "docker", [