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