fix(scripts): remove nix substitutions from shell script

This commit is contained in:
technofab 2025-03-23 14:55:40 +01:00
parent 2bed4190a4
commit a458a21c7b
2 changed files with 17 additions and 11 deletions

View file

@ -116,14 +116,20 @@
};
copyToRoot = pkgs.buildEnv {
name = "image-root";
paths = [
pkgs.gitMinimal
pkgs.gnugrep
pkgs.cachix
pkgs.attic-client
setupScript
finalizeScript
];
paths = with pkgs;
[
gitMinimal
gnugrep
gnused
busybox
diffutils
cachix
attic-client
]
++ [
setupScript
finalizeScript
];
pathsToLink = ["/bin"];
};
};