From a29c713ca58aa6b4af7a06ab5006e012bdb2d666 Mon Sep 17 00:00:00 2001 From: lightly-toasted Date: Sat, 6 Dec 2025 13:54:03 +0900 Subject: [PATCH] fix(devshell): add local bin folder to PATH via shellHook --- flake.nix | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/flake.nix b/flake.nix index 7214934..5435b57 100644 --- a/flake.nix +++ b/flake.nix @@ -89,12 +89,9 @@ pkgs.sops ]; - packages = [ - (pkgs.symlinkJoin { - name = "deploy-bin"; - paths = [ ./bin ]; - }) - ]; + shellHook = '' + export PATH=${builtins.toPath ./bin}:$PATH + ''; }; } );