templates/flake.nix

15 lines
210 B
Nix
Raw Permalink Normal View History

2024-10-11 22:39:09 +00:00
{
description = "Collection of flake templates";
outputs =
{ self }:
{
templates = {
go = {
path = ./go;
description = "Go template";
};
};
};
}