18 lines
336 B
Nix
18 lines
336 B
Nix
{
|
|
outputs = { self, ... }: {
|
|
templates = let
|
|
t = path: description: {
|
|
inherit path description;
|
|
};
|
|
basic = t ./flakes/basic ''
|
|
Basic Nix Flake Template
|
|
'';
|
|
in {
|
|
python = t ./flakes/python ''
|
|
Basic Python Environment Template
|
|
'';
|
|
default = basic;
|
|
};
|
|
};
|
|
}
|