dev-templates/flake.nix

43 lines
877 B
Nix
Raw Normal View History

2022-07-12 01:17:54 +02:00
{
description = "Ready-made templates for easily creating flake-driven environments";
outputs = { self }: {
templates = {
2022-07-28 23:20:46 +02:00
gleam = {
path = ./gleam;
description = "Gleam development environment";
};
2022-07-12 01:17:54 +02:00
go_1_17 = {
path = ./go1.17;
description = "Go 1.17 development environment";
};
go_1_18 = {
path = ./go1.18;
description = "Go 1.18 development environment";
};
2022-07-12 02:01:42 +02:00
2022-07-28 23:42:40 +02:00
java = {
path = ./java;
description = "Java development environment";
};
2022-07-28 23:37:55 +02:00
node = {
path = ./node;
description = "Node.js development environment";
};
2022-07-16 16:48:23 +02:00
rust = {
path = ./rust;
description = "Rust development environment";
2022-07-12 02:01:42 +02:00
};
2022-07-28 23:20:46 +02:00
zip = {
path = ./zig;
description = "Zig development environment";
};
2022-07-12 01:17:54 +02:00
};
};
}