Create Basic Templates

This commit is contained in:
2023-08-14 15:57:00 -04:00
parent 666b20bcb9
commit 11e3bb4a47
3 changed files with 65 additions and 0 deletions

17
flake.nix Normal file
View File

@@ -0,0 +1,17 @@
{
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;
};
};
}