15 lines
210 B
Nix
15 lines
210 B
Nix
{
|
|
description = "Collection of flake templates";
|
|
|
|
outputs =
|
|
{ self }:
|
|
{
|
|
templates = {
|
|
go = {
|
|
path = ./go;
|
|
description = "Go template";
|
|
};
|
|
};
|
|
};
|
|
}
|