From cb8cace99419c94f5a70f972fa2ff03d50fb94e8 Mon Sep 17 00:00:00 2001 From: cristianoliveira Date: Tue, 9 Apr 2024 07:50:31 +0200 Subject: [PATCH] chore: shell nix uses latest go version --- shell.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell.nix b/shell.nix index 6049595..229fe8a 100644 --- a/shell.nix +++ b/shell.nix @@ -3,7 +3,7 @@ pkgs.mkShell { # buildInputs is for dependencies you'd need "at run time", # were you to to use nix-build not nix-shell and build whatever you were working on buildInputs = [ - pkgs.go_1_22 + pkgs.go ]; shell = pkgs.zsh;