dream2nix/templates/default.nix
2023-07-18 19:23:34 +02:00

15 lines
183 B
Nix

{
lib,
self,
...
}: let
l = lib // builtins;
in {
flake = {
v1-python = {
description = "Simple dream2nix python project";
path = ./v1-python;
};
};
}