flake-templates/flake.nix

11 lines
212 B
Nix
Raw Normal View History

2023-09-10 16:33:22 +00:00
{
description = "A collection of language-specific Nix flake templates";
outputs = inputs: {
templates.rust = {
path = ./rust;
description = "Flake template for Rust projects";
};
};
}