15 lines
304 B
Nix
15 lines
304 B
Nix
{
|
|
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";
|
|
};
|
|
}
|