From cf6611087a8aeb3eae71090c3e258deae4876b7b Mon Sep 17 00:00:00 2001 From: xecarlox94 Date: Thu, 29 May 2025 23:29:55 +0100 Subject: [PATCH] adding haskell template providing dev/prod environments --- flake.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/flake.nix b/flake.nix index 3f6a9a0..f4781f1 100644 --- a/flake.nix +++ b/flake.nix @@ -53,7 +53,6 @@ packages.default = callPackage ./. { }; - devShells.default = pkgs.mkShell { buildInputs = with pkgs; [ go @@ -71,11 +70,12 @@ bindings = bindingsOverlay; }; - templates.default = { - hs-bindings = ./nix/templates/haskell; - description = "Haskell Bindings to p2prc protocol"; - }; - } - )); + )) // + { + templates.haskell = { + bindings = ./nix/templates/haskell; + description = "Haskell Bindings to p2prc protocol"; + }; + }; }