From 9adb3e051fd18437262d091fd94030e9c3a4fdd6 Mon Sep 17 00:00:00 2001 From: Giulio De Pasquale Date: Sun, 19 Feb 2023 06:26:38 +0100 Subject: [PATCH] flake: Added description to basicShell template --- flake.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 6c0c732..3fec57c 100644 --- a/flake.nix +++ b/flake.nix @@ -96,8 +96,10 @@ defaultTemplate = self.templates.basicShell; templates = { - basicShell.path = ./templates/basicShell; - description = "A barebone shell with custom defined packages"; + basicShell = { + path = ./templates/basicShell; + description = "A barebone shell with custom defined packages"; + }; }; }; }