yep, more dotfiles
1_default:
2 @just --list --unsorted --list-heading '' --list-prefix '—— '
3
4[linux]
5switch PROFILE="" *ARGS:
6 sudo nixos-rebuild switch --show-trace --flake .#{{PROFILE}} {{ARGS}}
7[macos]
8switch PROFILE="" *ARGS:
9 darwin-rebuild switch --show-trace --flake .#{{PROFILE}} {{ARGS}}
10
11[linux]
12build PROFILE="" *ARGS:
13 nixos-rebuild build --show-trace --flake .#{{PROFILE}} {{ARGS}}
14[macos]
15build PROFILE="" *ARGS:
16 darwin-rebuild build --show-trace --flake .#{{PROFILE}} {{ARGS}}
17
18home-build PROFILE *ARGS:
19 home-manager build --show-trace --flake .#{{PROFILE}} {{ARGS}}
20
21home-switch PROFILE *ARGS:
22 home-manager switch --show-trace --flake .#{{PROFILE}} {{ARGS}}