mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-03-22 22:29:06 +01:00
just: Group remaining commands into utility group
This commit is contained in:
parent
050d607cd3
commit
c85c6619b7
1 changed files with 7 additions and 1 deletions
8
justfile
8
justfile
|
|
@ -1,23 +1,29 @@
|
||||||
set quiet := true
|
set quiet := true
|
||||||
|
|
||||||
list:
|
_list:
|
||||||
just --list --unsorted
|
just --list --unsorted
|
||||||
|
|
||||||
|
[group('utility')]
|
||||||
update:
|
update:
|
||||||
nix flake update --commit-lock-file
|
nix flake update --commit-lock-file
|
||||||
|
|
||||||
|
[group('utility')]
|
||||||
fmt:
|
fmt:
|
||||||
nix fmt
|
nix fmt
|
||||||
|
|
||||||
|
[group('utility')]
|
||||||
check:
|
check:
|
||||||
nix flake check
|
nix flake check
|
||||||
|
|
||||||
|
[group('utility')]
|
||||||
check-lite:
|
check-lite:
|
||||||
nix flake check --no-build
|
nix flake check --no-build
|
||||||
|
|
||||||
|
[group('utility')]
|
||||||
repair:
|
repair:
|
||||||
nix-store --verify --check-contents --repair
|
nix-store --verify --check-contents --repair
|
||||||
|
|
||||||
|
[group('utility')]
|
||||||
repl host='$(hostname)':
|
repl host='$(hostname)':
|
||||||
nix repl .#allHosts.{{ host }}
|
nix repl .#allHosts.{{ host }}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue