flake-templates/flake.nix

19 lines
381 B
Nix
Raw Permalink Normal View History

2024-03-14 19:17:47 +01:00
{
outputs = { ... }: {
templates = {
pyproject = {
path = ./pyproject;
description = "Python project with pyproject.toml";
};
pyscript = {
path = ./pyscript;
description = "Simple python script as application";
};
rust = {
path = ./rust;
description = "Rust cargo project";
};
};
};
}