nix-templates/flake.nix

13 lines
208 B
Nix

{
description = "A collection of flake templates";
outputs = _inputs: {
templates = {
default = {
path = ./default;
description = "Basic flake template";
};
};
};
}