nix/flake.nix
2026-04-03 18:31:37 +02:00

34 lines
642 B
Nix

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