tijdelijk-te-laat/flake.nix
2023-10-22 19:19:19 +02:00

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