tijdelijk-te-laat/flake.nix
2025-04-22 09:37:59 +02:00

31 lines
649 B
Nix

{
description = "My collection of flake templates";
outputs =
{ self }:
{
templates = {
latex = {
path = ./latex;
description = "A fairly basic latex flake";
};
trivial = {
path = ./trivial;
description = "What I consider to be the bare minimum flake";
};
haskell = {
path = ./haskell;
description = "A basic Haskell flake";
};
crude = {
path = ./crude;
description = "A somewhat 'crude' looking typst template";
};
};
defaultTemplate = self.templates.trivial;
};
}