nix-config/templates/default.nix

19 lines
330 B
Nix
Raw Normal View History

2024-05-22 15:07:45 -05:00
{
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";
};
}