diff --git a/justfile b/justfile index 667a164..7f2e829 100644 --- a/justfile +++ b/justfile @@ -1,14 +1,14 @@ default: just --list -apollo *args: - sudo nixos-rebuild switch --flake .#apollo {{ args }} +apollo command *args: + sudo nixos-rebuild {{ command }} --flake .#apollo {{ args }} -pop-os *args: - home-manager switch -f home-manager/home.nix --flake .#pop-os {{ args }} +pop-os command *args: + home-manager {{ command }} -f home-manager/home.nix --flake .#pop-os {{ args }} -wsl2 *args: - home-manager switch -f home-manager/home.nix --flake .#wsl2 {{ args }} +wsl2 command *args: + home-manager {{ command }} -f home-manager/home.nix --flake .#wsl2 {{ args }} -update: - nix flake update +update *args: + nix flake update {{ args }}