mirror of
https://github.com/traxys/Nixfiles.git
synced 2026-02-13 10:50:20 +01:00
20 lines
500 B
Nix
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";
|
|
};
|
|
};
|
|
}
|