21 lines
402 B
Nix
21 lines
402 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
|
|
'';
|
|
c = t ./flakes/c ''
|
|
C Based Meson Project
|
|
'';
|
|
default = basic;
|
|
};
|
|
};
|
|
}
|