nix-templates/flake.nix

13 lines
199 B
Nix
Raw Normal View History

2023-03-20 09:07:05 +01:00
{
description = "A collection of flake templates";
2024-11-11 17:21:00 +01:00
outputs = {
2023-03-20 09:07:05 +01:00
templates = {
default = {
path = ./default;
2024-11-11 17:21:00 +01:00
description = "Basic flake template";
2023-10-08 15:17:31 +02:00
};
2023-03-20 09:07:05 +01:00
};
};
}