tijdelijk-te-laat/flake.nix
2025-04-18 13:51:02 +02:00

26 lines
524 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";
};
};
defaultTemplate = self.templates.trivial;
};
}