nix-templates/flake.nix
2023-03-20 17:07:05 +09:00

13 lines
214 B
Nix

{
description = "A collection of flake templates";
outputs = {self}: {
templates = {
default = {
path = ./default;
description = "My own basic flake template";
};
};
};
}