tijdelijk-te-laat/flake.nix

19 lines
381 B
Nix
Raw Normal View History

2023-10-22 18:11:56 +02:00
{ description = "My collection of flake templates";
outputs = { self }: {
templates = {
2023-10-22 19:19:19 +02:00
latex = {
path = ./latex;
description = "A fairly basic latex flake";
};
2023-10-22 18:11:56 +02:00
trivial = {
path = ./trivial;
description = "What I consider to be the bare minimum flake";
};
2023-10-22 19:19:19 +02:00
2023-10-22 18:11:56 +02:00
};
defaultTemplate = self.templates.trivial;
};
}