Skip to content

Commit

Permalink
flake: fix installer iso path a bit more soundly
Browse files Browse the repository at this point in the history
  • Loading branch information
lilyinstarlight committed Jan 11, 2025
1 parent 32617ee commit e463e1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,8 @@
in {
installerSystem = installerConfiguration;
installer = let
isoName = "${installerConfiguration.config.image.baseName}.iso";
isoPath = "${installerConfiguration.config.system.build.isoImage}/iso/${isoName}";
isoName = installerConfiguration.config.image.fileName;
isoPath = "${installerConfiguration.config.system.build.image}/${installerConfiguration.config.image.filePath}";
in pkgs.runCommandLocal isoName { inherit isoPath; } ''ln -s "$isoPath" $out'';
};
})
Expand Down

0 comments on commit e463e1a

Please sign in to comment.