clan-core/templates/flake-module.nix
Jörg Thalheim 6d1de943e1
All checks were successful
build / test (pull_request) Successful in 21s
move out non-toplevel flake modules from flake.nix
2023-08-08 14:03:26 +02:00

16 lines
313 B
Nix

{
imports = [
./python-project/flake-module.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;
};
};
}