nix/flake.nix
2025-08-12 21:18:14 +02:00

28 lines
505 B
Nix

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