servers/machines/lebesgue/deploy

15 lines
236 B
Text
Raw Normal View History

2025-02-03 13:00:31 -06:00
#!/usr/bin/env bash
2025-02-04 17:20:30 -06:00
function deploy() {
2025-12-14 23:43:37 -05:00
nix develop -c nixos-rebuild $1 --flake .#default --target-host admin@lebesgue --use-remote-sudo --verbose
2025-02-04 17:20:30 -06:00
}
2025-12-14 17:03:55 -05:00
nix flake update common
2025-02-03 13:00:31 -06:00
2025-02-04 17:20:30 -06:00
if [[ -n $1 ]]; then
deploy $1
else
deploy "switch"
fi