27 lines
403 B
Nix
27 lines
403 B
Nix
|
|
{
|
||
|
|
description = "A collection of flake templates";
|
||
|
|
|
||
|
|
outputs = { self }: {
|
||
|
|
|
||
|
|
templates = {
|
||
|
|
|
||
|
|
simplePython = {
|
||
|
|
path = ./python;
|
||
|
|
description = "Python template";
|
||
|
|
};
|
||
|
|
|
||
|
|
rust = {
|
||
|
|
path = ./rust;
|
||
|
|
description = "Simple rust template";
|
||
|
|
};
|
||
|
|
|
||
|
|
vlang = {
|
||
|
|
path = ./vlang;
|
||
|
|
description = "Simple vlang template";
|
||
|
|
};
|
||
|
|
|
||
|
|
};
|
||
|
|
|
||
|
|
};
|
||
|
|
}
|