added template to flake

This commit is contained in:
Daniel Winkler 2025-08-18 19:59:39 +10:00
commit 6b93535b24
No known key found for this signature in database

View file

@ -1,8 +1,11 @@
{ {
description = "Project Templates"; description = "Project Templates";
outputs = {self}: outputs = {self}: {
{
templates = { templates = {
n = {
path = ./templates/n;
description = "Minimal Development environment";
};
r = { r = {
path = ./templates/r; path = ./templates/r;
description = "R development environment"; description = "R development environment";
@ -16,6 +19,6 @@
description = "Scientific computing environment (Julia, Python, R) without folder structure"; description = "Scientific computing environment (Julia, Python, R) without folder structure";
}; };
}; };
defaultTemplate = self.templates.sci; defaultTemplate = self.templates.n;
}; };
} }