diff options
| -rw-r--r-- | parts/just.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/parts/just.nix b/parts/just.nix index 62ab215..a867452 100644 --- a/parts/just.nix +++ b/parts/just.nix @@ -4,7 +4,7 @@ justfile = '' action target action: - git add . && nix develop --command rui --allow-unfree --allow-insecure {{target}} {{action}} -- --impure + git add . && rui --allow-unfree --allow-insecure {{target}} {{action}} -- --impure build target: just action {{target}} build @@ -16,7 +16,7 @@ rui home news --user {{user}} -- --impure check: - nix develop --command nix flake check + nix flake check push message: git add . && git commit -m "{{message}}" && git push origin main |