Merge remote-tracking branch 'origin/main'

This commit is contained in:
UGA Innovation Factory
2026-01-05 15:54:33 -05:00
2 changed files with 15 additions and 2 deletions

View File

@@ -20,6 +20,12 @@ let
targetConfig = self.nixosConfigurations.${hostName}.config; targetConfig = self.nixosConfigurations.${hostName}.config;
targetSystemBuild = targetConfig.system.build; targetSystemBuild = targetConfig.system.build;
diskoScript = targetConfig.system.build.diskoScript; diskoScript = targetConfig.system.build.diskoScript;
# Build the closure export at build time (not runtime in ISO)
closureExport = pkgs.runCommand "closure-export-${hostName}" { } ''
mkdir -p $out
${pkgs.nix}/bin/nix-store --export $(${pkgs.nix}/bin/nix-store -qR ${targetSystem}) > $out/closure.nar
'';
in in
nixpkgs.lib.nixosSystem { nixpkgs.lib.nixosSystem {
inherit system; inherit system;
@@ -29,6 +35,7 @@ let
hostName hostName
targetSystemBuild targetSystemBuild
diskoScript diskoScript
closureExport
; ;
hostPlatform = system; hostPlatform = system;
}; };

View File

@@ -1,6 +1,7 @@
# This module defines a systemd service that automatically installs NixOS to the disk. # This module defines a systemd service that automatically installs NixOS to the disk.
# It is intended to be used in an installation ISO. # It is intended to be used in an installation ISO.
# It expects `targetSystem` (the closure to install) and `diskoScript` (the partitioning script) to be passed as arguments. # It expects `targetSystem` (the closure to install), `diskoScript` (the partitioning script),
# and `closureExport` (the pre-built NAR archive) to be passed as arguments.
{ {
config, config,
lib, lib,
@@ -10,6 +11,7 @@
hostPlatform, hostPlatform,
targetSystemBuild, targetSystemBuild,
diskoScript, diskoScript,
closureExport,
... ...
}: }:
{ {
@@ -21,8 +23,12 @@
targetSystemBuild.toplevel targetSystemBuild.toplevel
]; ];
# Explicitly include the system closure in the ISO image to prevent any need to build or fetch # Explicitly include the pre-built closure export and system in the ISO image
isoImage.contents = [ isoImage.contents = [
{
source = closureExport;
target = "/closure-export";
}
{ {
source = targetSystem; source = targetSystem;
target = "/system"; target = "/system";