2025-04-18 13:51:02 +02:00
|
|
|
{
|
|
|
|
description = "My collection of flake templates";
|
|
|
|
outputs =
|
|
|
|
{ self }:
|
|
|
|
{
|
|
|
|
templates = {
|
2023-10-22 19:19:19 +02:00
|
|
|
|
2025-04-18 13:51:02 +02:00
|
|
|
latex = {
|
|
|
|
path = ./latex;
|
|
|
|
description = "A fairly basic latex flake";
|
|
|
|
};
|
2023-10-22 19:19:19 +02:00
|
|
|
|
2025-04-18 13:51:02 +02:00
|
|
|
trivial = {
|
|
|
|
path = ./trivial;
|
|
|
|
description = "What I consider to be the bare minimum flake";
|
|
|
|
};
|
2023-10-22 19:19:19 +02:00
|
|
|
|
2025-04-18 13:51:02 +02:00
|
|
|
haskell = {
|
|
|
|
path = ./haskell;
|
|
|
|
description = "A basic Haskell flake";
|
|
|
|
};
|
2024-03-19 00:59:45 +01:00
|
|
|
|
2025-04-22 09:37:59 +02:00
|
|
|
crude = {
|
|
|
|
path = ./crude;
|
|
|
|
description = "A somewhat 'crude' looking typst template";
|
|
|
|
};
|
|
|
|
|
2025-04-18 13:51:02 +02:00
|
|
|
};
|
|
|
|
defaultTemplate = self.templates.trivial;
|
2023-10-22 18:11:56 +02:00
|
|
|
};
|
|
|
|
}
|