nix-config/templates/flake.nix

13 lines
214 B
Nix
Raw Normal View History

2023-03-06 07:47:49 +01:00
{
description = "A collection of flake templates";
outputs = {self}: {
templates = {
default = {
path = ./default;
description = "My own basic flake template";
};
};
};
}