From 374e31d8521535360eec4f5b0fd028d14fc2a9ea Mon Sep 17 00:00:00 2001 From: technofab Date: Mon, 5 Jan 2026 22:12:36 +0100 Subject: [PATCH] chore(devShells): use new soonix syntax --- nix/repo/devShells.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nix/repo/devShells.nix b/nix/repo/devShells.nix index c473189..272f851 100644 --- a/nix/repo/devShells.nix +++ b/nix/repo/devShells.nix @@ -41,8 +41,10 @@ in { } { name = "soonix"; + files = "nix run .#soonix -- list --skip-gitignore"; stage_fixed = true; - run = "nix run .#soonix:update"; + # {files} is needed so lefthook git add's them + run = "nix run .#soonix -- update --skip-gitignore; #{files}"; } ]; };