nixos/scripts/install_new_vm.sh

13 lines
399 B
Bash
Raw Normal View History

2022-01-31 12:42:56 +01:00
#!/usr/bin/env bash
read -e -p "Enter a config you want to deploy: " flake
server="nixos@nixos.2li.local"
download_command="curl https://git.2li.ch/Nebucatnetzer/nixos/archive/master.tar.gz | tar xz"
install_command="cd ~/nixos && ./scripts/install_vm.sh $flake"
rsa_key="~/.ssh/id_rsa"
ssh-copy-id $server
ssh -i $rsa_key -t $server $download_command
ssh -i $rsa_key -t $server $install_command