1
0
Fork 0

Compare commits

..

No commits in common. "184a8a72aaaf7bf3af48bdc9115c4072abf1bcd0" and "28b14a9ce39450ad56400bd02035e5b92f86d482" have entirely different histories.

View file

@ -84,8 +84,10 @@ in
cd ${config.secrets.nixConfigFolder} cd ${config.secrets.nixConfigFolder}
# Make sure we're up-to-date # Make sure we're up-to-date
git pull --recurse-submodules git pull --recurse-submodules
nix flake update --commit-lock-file nix flake update
git push git add flake.lock
# Only commit and push if the lock file has changed, otherwise quietly exit
git diff --quiet && git diff --staged --quiet || git commit -am "Update flake.lock" && git push
''; '';
}; };