flake/flake.nix
2025-05-12 16:12:49 +02:00

12 lines
216 B
Nix

{
description = "Flake templates";
outputs = { self }: {
templates = {
python-project = {
path = ./python-project;
description = "A python project using devenv";
};
};
};
}