templates/flake.nix
2024-10-12 00:39:09 +02:00

15 lines
210 B
Nix

{
description = "Collection of flake templates";
outputs =
{ self }:
{
templates = {
go = {
path = ./go;
description = "Go template";
};
};
};
}