nixos/scripts/update_single_machine.sh

9 lines
245 B
Bash
Raw Normal View History

2022-01-31 12:28:59 +01:00
#!/usr/bin/env bash
rsa_key="~/.nixos/secrets/ssh_keys/ansible/ansible.key"
2022-01-31 14:31:55 +01:00
export NIX_SSHOPTS="-t -i $rsa_key"
2022-01-31 12:28:59 +01:00
host=$1
2022-01-31 14:31:55 +01:00
fqdn="$host.2li.local"
nixos-rebuild switch --use-remote-sudo --build-host localhost --target-host $fqdn --flake ".#$host"