nix/templates/default.nix

31 lines
723 B
Nix
Raw Permalink Normal View History

2023-12-19 10:24:07 -06:00
{
rust = {
path = ./rust;
description = "A template for working on a Rust project";
};
2024-02-28 09:31:58 -06:00
nix-flake = {
path = ./nix-flake;
description = "A template for working on a Nix flake";
};
deno = {
path = ./deno;
description = "A template for working on a TypeScript and Deno project";
};
2024-02-20 20:14:52 -06:00
elixir = {
path = ./elixir;
description = "A template for working on an Elixir project";
};
godot = {
path = ./godot;
description = "A template for working on a Godot game or project";
};
2024-04-10 21:02:52 -05:00
nim = {
path = ./nim;
description = "A template for working on a Nim project";
};
2024-05-28 10:14:04 -05:00
gleam = {
path = ./gleam;
description = "A template for working on a Gleam project";
};
2023-12-19 10:24:07 -06:00
}