From 83742a8bad944e1a4f419db5854f882e5cc8534c Mon Sep 17 00:00:00 2001 From: Luca Di Carlo Date: Sun, 24 Sep 2023 20:24:00 +0200 Subject: [PATCH] Fix: flake template start This is the only way I found to make the project run using flakes --- templates/app/flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/app/flake.nix b/templates/app/flake.nix index b26947b..1d8de62 100644 --- a/templates/app/flake.nix +++ b/templates/app/flake.nix @@ -22,7 +22,7 @@ inherit (gomod2nix.legacyPackages.${system}) buildGoApplication; }; devShells.default = callPackage ./shell.nix { - inherit (gomod2nix.legacyPackages.${system}) buildGoApplication mkGoEnv gomod2nix; + inherit (gomod2nix.legacyPackages.${system}) mkGoEnv gomod2nix; }; }) );