justfile (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
_default:
@just --list --unsorted
build HOST *args:
sudo nixos-rebuild build --flake .#{{ HOST }} {{ args }}
switch HOST *args:
sudo nixos-rebuild switch --flake .#{{ HOST }} {{ args }}
boot HOST *args:
sudo nixos-rebuild boot --flake .#{{ HOST }} {{ args }}
update:
nix flake update
check:
nix flake check
|