build: allow for specifying the command
This commit is contained in:
parent
1a0707910e
commit
7c206927dc
16
justfile
16
justfile
|
@ -1,14 +1,14 @@
|
||||||
default:
|
default:
|
||||||
just --list
|
just --list
|
||||||
|
|
||||||
apollo *args:
|
apollo command *args:
|
||||||
sudo nixos-rebuild switch --flake .#apollo {{ args }}
|
sudo nixos-rebuild {{ command }} --flake .#apollo {{ args }}
|
||||||
|
|
||||||
pop-os *args:
|
pop-os command *args:
|
||||||
home-manager switch -f home-manager/home.nix --flake .#pop-os {{ args }}
|
home-manager {{ command }} -f home-manager/home.nix --flake .#pop-os {{ args }}
|
||||||
|
|
||||||
wsl2 *args:
|
wsl2 command *args:
|
||||||
home-manager switch -f home-manager/home.nix --flake .#wsl2 {{ args }}
|
home-manager {{ command }} -f home-manager/home.nix --flake .#wsl2 {{ args }}
|
||||||
|
|
||||||
update:
|
update *args:
|
||||||
nix flake update
|
nix flake update {{ args }}
|
||||||
|
|
Loading…
Reference in a new issue