mirror of
https://github.com/dwinkler1/np.git
synced 2026-02-19 14:30:59 -05:00
24 lines
648 B
Nix
24 lines
648 B
Nix
{
|
|
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";
|
|
};
|
|
};
|
|
defaultTemplate = self.templates.n;
|
|
};
|
|
}
|