latex template

This commit is contained in:
Nox Sluijtman 2023-10-22 19:19:19 +02:00
parent 5afb6b6d99
commit 4db22860c9
6 changed files with 74 additions and 0 deletions

View file

@ -1,10 +1,17 @@
{ 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";
};
};
defaultTemplate = self.templates.trivial;
};