28 lines
458 B
Nix
28 lines
458 B
Nix
{
|
|
description = "Ryan's Nix flake templates";
|
|
|
|
outputs = { self }: {
|
|
templates = {
|
|
python = {
|
|
path = ./python;
|
|
description = "Python shell flake";
|
|
};
|
|
|
|
elixir = {
|
|
path = ./elixir;
|
|
description = "Elixir flake";
|
|
};
|
|
|
|
latex = {
|
|
path = ./latex;
|
|
description = "LaTeX flake";
|
|
};
|
|
|
|
raw = {
|
|
path = ./raw;
|
|
description = "Raw flake";
|
|
};
|
|
};
|
|
};
|
|
}
|