flake/flake.nix
2026-01-29 13:19:27 +01:00

20 lines
420 B
Nix

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