diff options
author | Alex Auvolat <alex@adnab.me> | 2021-11-18 23:47:53 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2021-11-18 23:47:53 +0100 |
commit | fe080ff4b6ffd435ab62f193072ec22e30b8602f (patch) | |
tree | 28eb5a9a985fc58892d53ebded75d4fff96d1a63 | |
parent | 664e4419fce8bd53bb2b010973fce14e7bee87fb (diff) | |
download | nixcfg-fe080ff4b6ffd435ab62f193072ec22e30b8602f.tar.gz nixcfg-fe080ff4b6ffd435ab62f193072ec22e30b8602f.zip |
add system upgrade to deploy
-rwxr-xr-x | deploy.sh | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -19,6 +19,10 @@ for NIXHOST in $NIXHOSTLIST; do echo "==== DOING $NIXHOST ====" + echo "updating" + ssh -F ssh_config $SSH_DEST sudo nix-channel --update + + echo "generating config" cat configuration.nix | ssh -F ssh_config $SSH_DEST sudo tee /etc/nixos/configuration.nix > /dev/null cat node/$NIXHOST.nix | ssh -F ssh_config $SSH_DEST sudo tee /etc/nixos/node.nix > /dev/null cat node/$NIXHOST.site.nix | ssh -F ssh_config $SSH_DEST sudo tee /etc/nixos/site.nix > /dev/null |