Handle nix cache properly

This commit is contained in:
Manuel Thalmann 2024-11-03 00:39:23 +01:00
parent dfd9b06d32
commit df7d3efae8

View file

@ -15,12 +15,15 @@ begin
function installNixPkgs -V config -V nixPkgsDir function installNixPkgs -V config -V nixPkgsDir
source "$config" source "$config"
downloadNixPkgs
mkdir -p "$nixPkgsDir" if [ ! -d "$nixPkgsCache" ]
cp -r "$nixPkgsCache"/* "$nixPkgsDir" downloadNixPkgs
mkdir -p "$nixPkgsDir"
cp -r "$nixPkgsCache"/* "$nixPkgsDir"
end
end end
function uninstallNixPkgs -V nixPkgsDir function uninstallNixPkgs -V nixPkgsDir
rm -rf "$nixPkgsDir" rm -rf (dirname "$nixPkgsDir")
end end
end end