diff --git a/flake.nix b/flake.nix index 96ec744..4bdd3e2 100644 --- a/flake.nix +++ b/flake.nix @@ -2,21 +2,9 @@ description = "Project Templates"; outputs = {self}: { templates = { - n = { - path = ./templates/n; - description = "Minimal Development environment"; - }; - r = { - path = ./templates/r; - description = "R development environment"; - }; - sci = { - path = ./templates/sci; - description = "Scientific computing environment (Julia, Python, R)"; - }; - sci_minimal = { - path = ./templates/sci_minimal; - description = "Scientific computing environment (Julia, Python, R) without folder structure"; + rde = { + path = ./templates/rde; + description = "Research Development Environment"; }; }; defaultTemplate = self.templates.n; diff --git a/templates/n/.envrc b/templates/rde/.envrc similarity index 100% rename from templates/n/.envrc rename to templates/rde/.envrc diff --git a/templates/n/flake.lock b/templates/rde/flake.lock similarity index 100% rename from templates/n/flake.lock rename to templates/rde/flake.lock diff --git a/templates/n/flake.nix b/templates/rde/flake.nix similarity index 100% rename from templates/n/flake.nix rename to templates/rde/flake.nix