dotnix/justfile

23 lines
362 B
Plaintext

[private]
default:
@just --choose
[private]
rebuild *args:
@touch .dirty
@git add .
@sudo nixos-rebuild --flake . {{args}}
@git rm -f .dirty
# Rebuild the current machine
switch *args:
@just rebuild switch {{args}}
# Update the flake
update-flake:
@nix flake update
# Update an individual input
update input:
@nix flake lock --update-input {{input}}