init-nix/flake.nix
2024-02-27 14:56:36 -08:00

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";
};
};
};
}