Nixfiles/templates/default.nix
2025-05-01 19:04:45 +02:00

20 lines
500 B
Nix

{
flake.templates = {
rust = {
path = ./rust;
description = "My rust template using rust-overlay and direnv";
};
webapp = {
path = ./webapp;
description = "A template for a web application (frontend + backend)";
};
webserver = {
path = ./webserver;
description = "A template for a web server (using templates for the frontend)";
};
gui = {
path = ./gui;
description = "A template for rust GUI applications";
};
};
}