tijdelijk-te-laat/flake.nix

24 lines
482 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
2024-03-19 00:59:45 +01:00
haskell = {
path = ./haskell;
description = "A basic Haskell flake";
};
2023-10-22 18:11:56 +02:00
};
defaultTemplate = self.templates.trivial;
};
}