clan-core/templates/flake-module.nix
2023-07-21 13:18:53 +00:00

13 lines
265 B
Nix

{ ... }: {
flake.templates = {
new-clan = {
description = "Initialize a new clan flake";
path = ./new-clan;
};
python-project = {
description = "Initialize a new internal python project";
path = ./python-project;
};
};
}