2024-10-21 04:13:04 +00:00
|
|
|
default:
|
|
|
|
@just --list
|
|
|
|
|
2024-11-22 04:28:46 +00:00
|
|
|
defhost := `hostname`
|
|
|
|
defuser := env_var('USER')
|
|
|
|
|
2024-11-06 03:56:12 +00:00
|
|
|
alias dh := deployhome
|
|
|
|
[group('home')]
|
2024-11-22 04:28:46 +00:00
|
|
|
deployhome user=defuser host=defhost:
|
2025-01-12 04:21:29 +00:00
|
|
|
nh home switch -c {{user}}@{{host}} -b bak .
|
2024-10-21 04:13:04 +00:00
|
|
|
|
2024-11-06 03:56:12 +00:00
|
|
|
[group('home')]
|
2025-01-12 04:21:29 +00:00
|
|
|
refreshhome user=defuser host=defhost:
|
|
|
|
nh home switch -c {{user}}@{{host}} -b bak . -- --refresh
|
2024-11-04 03:12:15 +00:00
|
|
|
|
2025-01-07 02:45:16 +00:00
|
|
|
alias do := deployos
|
|
|
|
[group('nixos')]
|
|
|
|
deployos host=defhost:
|
2025-01-12 04:21:29 +00:00
|
|
|
nh os switch -H {{host}} .
|
2025-01-07 02:45:16 +00:00
|
|
|
|
2025-03-09 17:59:51 +00:00
|
|
|
alias dro := deployRemoteOs
|
|
|
|
[group('nixos')]
|
|
|
|
deployRemoteOs host:
|
|
|
|
nixos-rebuild switch --flake .#{{host}} \
|
|
|
|
--target-host root@{{host}} \
|
|
|
|
--verbose --log-format internal-json |& nom --json
|
|
|
|
|
2025-03-09 20:23:25 +00:00
|
|
|
[group('nixos')]
|
|
|
|
deployAll:
|
|
|
|
#!/usr/bin/env fish
|
|
|
|
set -l systems (nix flake show --all-systems --json \
|
|
|
|
| jq '.nixosConfigurations | keys[]' \
|
|
|
|
# Remove literal quotes from values so that contains works.
|
|
|
|
| string trim --chars \"\'\")
|
|
|
|
|
|
|
|
# Remove the current system.
|
|
|
|
set -l currentSysI (contains --index (hostname) $systems)
|
|
|
|
if set -q currentSysI[1]
|
|
|
|
set -e systems[$currentSysI]
|
|
|
|
end
|
|
|
|
|
|
|
|
just deployos
|
|
|
|
|
|
|
|
for system in $systems
|
|
|
|
just deployRemoteOs $system
|
|
|
|
end
|
|
|
|
|
2024-11-22 04:28:46 +00:00
|
|
|
alias dd := deploydarwin
|
|
|
|
[group('darwin')]
|
|
|
|
deploydarwin host=defhost:
|
|
|
|
darwin-rebuild switch --flake .#{{host}}
|
|
|
|
|
2024-11-06 03:56:12 +00:00
|
|
|
alias up := update
|
2024-11-22 04:28:46 +00:00
|
|
|
[group('update')]
|
2024-10-21 04:13:04 +00:00
|
|
|
update:
|
|
|
|
nix flake update
|
|
|
|
|
2024-11-22 04:28:46 +00:00
|
|
|
[group('update')]
|
2024-10-21 04:13:04 +00:00
|
|
|
updatejust this:
|
|
|
|
nix flake update {{this}}
|
2024-11-18 00:32:27 +00:00
|
|
|
|
|
|
|
alias gc := collectgarbage
|
2024-11-22 04:28:46 +00:00
|
|
|
[group('maintainence')]
|
2024-11-18 00:32:27 +00:00
|
|
|
collectgarbage:
|
2024-11-19 05:17:03 +00:00
|
|
|
nh clean all
|
2024-12-03 02:47:20 +00:00
|
|
|
|
2025-01-12 04:12:17 +00:00
|
|
|
[group('maintainence')]
|
|
|
|
genFirefoxAddons:
|
|
|
|
nix run git+https://git.sr.ht/~rycee/mozilla-addons-to-nix/ -- \
|
|
|
|
overlays/firefox-addons/addons.json \
|
|
|
|
overlays/firefox-addons/addons.nix
|
|
|
|
|
2025-03-09 22:13:48 +00:00
|
|
|
[group('maintainence')]
|
|
|
|
secret name:
|
2025-03-09 23:45:10 +00:00
|
|
|
cd secrets && agenix --edit {{name}}.age --identity ~/.ssh/marley@nyx && cd -
|
2025-03-09 22:13:48 +00:00
|
|
|
|
2024-12-03 02:47:20 +00:00
|
|
|
alias s := search
|
|
|
|
search this:
|
|
|
|
nh search {{this}}
|