12 lines
216 B
Nix
12 lines
216 B
Nix
{
|
|
description = "Flake templates";
|
|
|
|
outputs = { self }: {
|
|
templates = {
|
|
python-project = {
|
|
path = ./python-project;
|
|
description = "A python project using devenv";
|
|
};
|
|
};
|
|
};
|
|
}
|