19 lines
330 B
Nix
19 lines
330 B
Nix
|
{
|
||
|
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";
|
||
|
};
|
||
|
}
|