nix-config/templates/default.nix

15 lines
289 B
Nix
Raw Normal View History

2023-04-04 17:30:59 +02:00
{
2023-04-04 17:48:04 +02:00
"c++-cmake" = {
path = ./c++-cmake;
description = "A C++ project using CMake";
};
2023-04-04 18:21:05 +02:00
"c++-meson" = {
path = ./c++-meson;
2024-03-28 21:21:41 +01:00
description = "A C++ project using Meson";
2023-04-04 18:21:05 +02:00
};
2023-05-10 15:04:06 +02:00
"rust-cargo" = {
path = ./rust-cargo;
description = "A Rust project using Cargo";
};
2023-04-04 17:30:59 +02:00
}