np/flake.nix
2026-01-31 00:46:49 +11:00

16 lines
349 B
Nix

{
description = "Project Templates";
outputs = {self}: {
templates = {
rde = {
path = ./templates/rde;
description = "Research Development Environment";
};
ed = {
path = ./templates/ed;
description = "Simple nvim Environment";
};
};
defaultTemplate = self.templates.ed;
};
}