Formatting

This commit is contained in:
Nox Sluijtman 2025-04-18 13:51:02 +02:00
parent 57d373b305
commit fc54843031
Signed by: Egg
SSH key fingerprint: SHA256:2sG9X3C7Xvq2svGumz1/k7cm8l4G9+qAtAeugqB4J9M
4 changed files with 139 additions and 104 deletions

View file

@ -1,23 +1,26 @@
{ description = "My collection of flake templates";
outputs = { self }: {
templates = {
{
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";
};
haskell = {
path = ./haskell;
description = "A basic Haskell flake";
};
latex = {
path = ./latex;
description = "A fairly basic latex flake";
};
trivial = {
path = ./trivial;
description = "What I consider to be the bare minimum flake";
};
haskell = {
path = ./haskell;
description = "A basic Haskell flake";
};
defaultTemplate = self.templates.trivial;
};
defaultTemplate = self.templates.trivial;
};
}