marleyos/Justfile

80 lines
1.7 KiB
Makefile
Raw Permalink Normal View History

default:
@just --list
defhost := `hostname`
defuser := env_var('USER')
2024-11-06 03:56:12 +00:00
alias dh := deployhome
[group('home')]
deployhome user=defuser host=defhost:
2025-01-12 04:21:29 +00:00
nh home switch -c {{user}}@{{host}} -b bak .
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
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
alias dd := deploydarwin
[group('darwin')]
deploydarwin host=defhost:
darwin-rebuild switch --flake .#{{host}}
2024-11-06 03:56:12 +00:00
alias up := update
[group('update')]
update:
nix flake update
[group('update')]
updatejust this:
nix flake update {{this}}
2024-11-18 00:32:27 +00:00
alias gc := collectgarbage
[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
[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
[group('maintainence')]
secret name:
cd secrets && agenix --edit {{name}}.age --identity ~/.ssh/marley@nyx && cd -
2024-12-03 02:47:20 +00:00
alias s := search
search this:
nh search {{this}}