From 6b93535b242fde0e21a8cb5512c6b05e8306069b Mon Sep 17 00:00:00 2001 From: Daniel Winkler Date: Mon, 18 Aug 2025 19:59:39 +1000 Subject: [PATCH] added template to flake --- flake.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index 8f20546..96ec744 100644 --- a/flake.nix +++ b/flake.nix @@ -1,8 +1,11 @@ { description = "Project Templates"; - outputs = {self}: - { + outputs = {self}: { templates = { + n = { + path = ./templates/n; + description = "Minimal Development environment"; + }; r = { path = ./templates/r; description = "R development environment"; @@ -16,6 +19,6 @@ description = "Scientific computing environment (Julia, Python, R) without folder structure"; }; }; - defaultTemplate = self.templates.sci; + defaultTemplate = self.templates.n; }; }