added some flake templates.

This commit is contained in:
Gabe Venberg 2024-05-22 15:07:45 -05:00
parent 9068858ee4
commit fac5efd7b2
17 changed files with 448 additions and 0 deletions

18
templates/default.nix Normal file
View file

@ -0,0 +1,18 @@
{
inputs,
outputs,
...
}: {
default={
path=./default;
description="a basic blank devshell flake";
};
hugo = {
path = ./hugo;
description = "a flake for getting a hugo website up and running";
};
latex = {
path = ./latex;
description = "A flake containing a basic latex environment";
};
}