nix/flake.nix
2025-07-28 22:24:38 +02:00

16 lines
235 B
Nix

{
description = "nix flakes";
outputs =
{ self }:
{
templates = {
go = {
path = ./go;
description = "go template";
};
};
defaultTemplate = self.templates.go;
};
}