mirror of
https://github.com/dwinkler1/np.git
synced 2026-02-19 14:30:59 -05:00
16 lines
349 B
Nix
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;
|
|
};
|
|
}
|