-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
flake.nix
57 lines (47 loc) · 1.19 KB
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
description = "Nix flake dev environments";
outputs = { self }: {
templates = rec {
elixir-phoenix = {
path = ./elixir-phoenix;
description = "Elixir + Phoenix framework development environment";
};
gleam = {
path = ./gleam;
description = "Gleam development environment";
};
go = {
path = ./go;
description = "Go development environment";
};
java = {
path = ./java;
description = "Java development environment";
};
node = {
path = ./node;
description = "Node.js development environment";
};
php = {
path = ./php;
description = "PHP development environment";
};
protobuf = {
path = ./protobuf;
description = "Protocol Buffers development environment";
};
python = {
path = ./python;
description = "Python development environment";
};
ruby-on-rails = {
path = ./ruby-on-rails;
description = "Ruby on Rails development environment";
};
rust = {
path = ./rust;
description = "Rust development environment";
};
};
};
}