nix-templates/flake.nix

21 lines
409 B
Nix
Raw Normal View History

2023-03-20 09:07:05 +01:00
{
description = "A collection of flake templates";
2024-11-11 17:22:33 +01:00
outputs = _inputs: {
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
};
2024-11-22 14:20:25 +01:00
rust = {
path = ./rust;
description = "Flake template for rust projects";
};
c = {
path = ./c;
description = "Flake template for c projects";
};
2023-03-20 09:07:05 +01:00
};
};
}