From a48a97a7f702dedd4e365b515a5e39b8b7456529 Mon Sep 17 00:00:00 2001 From: ElnuDev Date: Sat, 15 Jul 2023 18:16:15 -0700 Subject: [PATCH] Automatically install templ utilities --- shell.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/shell.nix b/shell.nix index 6688eae..27c057f 100644 --- a/shell.nix +++ b/shell.nix @@ -7,5 +7,6 @@ pkgs.mkShell { ]; shellHook = '' export PATH="$HOME/go/bin:$PATH" + go install github.com/a-h/templ/cmd/templ@latest ''; }