dotfiles/justfile

27 lines
453 B
Makefile
Raw Normal View History

2023-03-02 17:17:36 +01:00
secret-stage:
git add -f home/secrets/default.nix
secret-unstage:
git restore --staged home/secrets/default.nix
2023-02-07 11:42:25 +01:00
2023-02-15 16:03:38 +01:00
[linux]
boot: secret-stage && secret-unstage
sudo nixos-rebuild boot --flake .
2023-03-02 17:17:36 +01:00
[macos]
check:
darwin-rebuild check --flake .
2023-03-02 17:17:36 +01:00
[linux]
check:
2023-03-10 02:45:17 +01:00
nix flake check .
2023-03-02 17:17:36 +01:00
[macos]
switch: secret-stage && secret-unstage
darwin-rebuild switch --flake .
[linux]
switch: secret-stage && secret-unstage
sudo nixos-rebuild switch --flake .