Get beads working again
This commit is contained in:
parent
ff5367794d
commit
70f48b9f58
6 changed files with 286 additions and 36 deletions
12
justfile
12
justfile
|
|
@ -1,18 +1,24 @@
|
|||
# Deploy config to a host (builds remotely, activates remotely)
|
||||
deploy host target:
|
||||
build-deploy-remote host target:
|
||||
nixos-rebuild switch \
|
||||
--flake .#{{host}} \
|
||||
--target-host {{target}} \
|
||||
--build-host {{target}}
|
||||
|
||||
# Deploy config to a host
|
||||
# Deploy config to a host (builds locally, activates remotely)
|
||||
deploy-remote host target:
|
||||
nixos-rebuild switch \
|
||||
--flake .#{{host}} \
|
||||
--target-host {{target}}
|
||||
|
||||
# Deploy config to a host (builds locally, activates locally)
|
||||
deploy-sudo host:
|
||||
sudo nixos-rebuild switch \
|
||||
--flake .#{{host}}
|
||||
|
||||
# Shortcut: deploy ruil (remote)
|
||||
deploy-ruil:
|
||||
just deploy ruil root@ruil.hunnur.com
|
||||
just deploy-remote ruil root@ruil.hunnur.com
|
||||
|
||||
# Shortcut: deploy liminal (local)
|
||||
deploy-liminal:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue