Limit attic push to two jobs

This commit is contained in:
Andreas Zweili 2024-05-13 12:57:32 +02:00
parent 1b15a34ba4
commit 680a102d9d
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ let
text = ''
nixos-rebuild -j auto switch --use-remote-sudo
if command -v attic &> /dev/null; then
attic push prod /run/current-system
attic push -j 2 prod /run/current-system
fi
'';
};