nix/flake.nix
2025-07-30 15:40:27 +02:00

20 lines
320 B
Nix

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