Formatting
This commit is contained in:
parent
57d373b305
commit
fc54843031
4 changed files with 139 additions and 104 deletions
41
flake.nix
41
flake.nix
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue