nixos-build-vm: Remove Nixpkgs path dependency

4ce241c882 switched `substituteAll` for `replaceVars`.
The latter stringifies the replacements, which leads to Nixpkgs filesystem path being embedded in the output.
This is disallowed by nixpkgs-basic-release-checks.nix.
https://github.com/NixOS/nixpkgs/pull/371501#issuecomment-2581315851
This commit is contained in:
Jan Tojnar 2025-01-09 23:14:51 +01:00
parent 350a060f1d
commit 130a105248

View file

@ -10,7 +10,7 @@ replaceVarsWith {
replacements = {
inherit runtimeShell;
buildVms = ./build-vms.nix;
buildVms = "${./build-vms.nix}";
};
dir = "bin";