Files
project-templates/flake.nix
2026-01-12 15:43:45 -06:00

13 lines
275 B
Nix

{
description = "A collection of templates for various programming languages";
outputs = {self}: {
templates = {
rust = {
path = ./rust;
description = "A rust flake with crane and templates for command args and configs";
};
};
};
}