Download nixpkgs only if necessary

This commit is contained in:
Manuel Thalmann 2024-11-03 22:37:33 +01:00
parent cdfeb7096e
commit 58eed5b29c

View file

@ -16,8 +16,11 @@ begin
function installNixPkgs -V config -V nixPkgsDir
source "$config"
if [ ! -d "$nixPkgsCache" ]
downloadNixPkgs
if [ ! -d "$nixPkgsDir" ]
if [ ! -d "$nixPkgsCache" ]
downloadNixPkgs
end
sudo mkdir -p "$nixPkgsDir"
sudo cp -r "$nixPkgsCache"/* "$nixPkgsDir"
end