-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
59 lines (48 loc) · 1.27 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
{
description = "Piq's flake templates";
outputs = { self, nixpkgs }: {
templates = {
haskell-cabal = {
path = ./haskell-cabal-template;
description = "Cabal project template";
};
nodejs = {
path = ./nodejs-template;
description = "Nodejs project template";
};
go = {
path = ./go-template;
description = "Go project template";
};
# This information was from https://xeiaso.net/blog/nix-flakes-go-programs/
gomod2nix = {
path = ./gomod2nix-template;
description = "Gomod2nix project template";
};
ocaml = {
path = ./ocaml-template;
description = "OCaml project template";
};
purescript = {
path = ./purescript-template;
description = "Purescript project template";
};
react-nextjs = {
path = ./react-nextjs-template;
description = "React NextJS Template";
};
react-ts = {
path = ./react-ts-template;
description = "React TS Template";
};
react-js = {
path = ./react-js-template;
description = "React JS Template";
};
scala = {
path = ./scala-template;
description = "Scala Template";
};
};
};
}