From 20d20aff9d267ba93c34c85f26f2aa9991371e30 Mon Sep 17 00:00:00 2001 From: Sam Willcocks Date: Sat, 11 Jun 2022 16:02:05 +0100 Subject: [PATCH] Add devshell to flake templates output --- flake.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/flake.nix b/flake.nix index b86d551..a71cd23 100644 --- a/flake.nix +++ b/flake.nix @@ -13,6 +13,10 @@ path = ./go; description = "My preferred go setup."; }; + devshell = { + path = ./devshell; + description = "A basic devshell setup"; + }; }; } // utils.lib.eachDefaultSystem (system: let pkgs = import nixpkgs { inherit system; };