20 lines
404 B
Nix
20 lines
404 B
Nix
{
|
|
description = "Flake templates";
|
|
|
|
outputs = { self }: {
|
|
templates = {
|
|
python-project = {
|
|
path = ./python-project;
|
|
description = "A python project using devenv";
|
|
};
|
|
rust = {
|
|
path = ./rust;
|
|
description = "A rust project";
|
|
};
|
|
go-project = {
|
|
path = ./go-project;
|
|
description = "A golang project";
|
|
};
|
|
};
|
|
};
|
|
}
|