summaryrefslogtreecommitdiff
path: root/justfile
diff options
context:
space:
mode:
authorseth <[email protected]>2024-07-23 20:14:22 -0400
committerseth <[email protected]>2024-07-23 20:14:22 -0400
commit8c06ec5df90126ab642fb3621d1b30f03b626aca (patch)
tree35412c0d41a1f51e455293d9f27717458b433aa5 /justfile
parent00172bc3302cc3b57b577ef8cec994425327e40e (diff)
justfile: `nix flake lock` -> `nix flake update`
`nix flake lock` won't update inputs as of Nix 2.19
Diffstat (limited to 'justfile')
-rw-r--r--justfile3
1 files changed, 1 insertions, 2 deletions
diff --git a/justfile b/justfile
index ae7f7e2..163d339 100644
--- a/justfile
+++ b/justfile
@@ -46,8 +46,7 @@ update:
--commit-lockfile-summary "flake: update all inputs"
update-input input:
- nix flake lock \
- --update-input {{ input }} \
+ nix flake update {{ input }} \
--commit-lock-file \
--commit-lockfile-summary "flake: update {{ input }}"