-
Notifications
You must be signed in to change notification settings - Fork 12
/
flake.nix
66 lines (65 loc) · 1.8 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
58
59
60
61
62
63
64
65
66
{
description = "A collection of project templates";
outputs =
{ ... }:
{
templates = {
meta = {
path = ./meta;
description = "Miscellaneous files for GitHub projects";
};
minimal = {
path = ./minimal;
description = "Minimal boilerplate with nix-systems";
};
flake-utils = {
path = ./flake-utils;
description = "A basic boilerplate with flake-utils";
};
flake-parts = {
path = ./flake-parts;
description = "A minimal boilerplate for the root flake";
};
pre-commit = {
path = ./pre-commit;
description = "Basic flake with pre-commit check";
};
treefmt = {
path = ./treefmt;
description = "Basic flake with a treefmt integration";
};
node-typescript = {
path = ./node-typescript;
description = "Toolchain for TypeScript frontend projects";
};
go = {
path = ./go;
description = "A minimal environment for Go with support for Go module";
};
ocaml = {
path = ./ocaml;
description = "A flake template for development with OPAM and Dune";
};
rust = {
path = ./rust;
description = "Rust toolchain";
};
elixir = {
path = ./elixir;
description = "Simple Elixir project";
};
elixir-app = {
path = ./elixir-app;
description = "A boilerplate for Elixir (Phoenix) application";
};
gleam = {
path = ./gleam;
description = "A minimal Gleam project";
};
zig = {
path = ./zig;
description = "A minimal Zig project";
};
};
};
}