-
Notifications
You must be signed in to change notification settings - Fork 4
/
templates.nix
41 lines (40 loc) · 1019 Bytes
/
templates.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
rec {
templates = {
haskell = {
path = ./template/haskell;
description = "A template for a haskell project that uses flakes";
welcomeText = ''
You just created a haskell flake project.
'';
};
idris = {
path = ./template/idris;
description = "A template for an idris2 project";
welcomeText = ''
You just created an idris2 project.
'';
};
rust = {
path = ./template/rust;
description = "A template for a rust project";
welcomeText = ''
You just created a rust project.
'';
};
agda = {
path = ./template/agda;
description = "A template for an agda project";
welcomeText = ''
You just created an agda project.
'';
};
terraform = {
path = ./template/terraform;
description = "A template for a Terraform project";
welcomeText = ''
You just created a Terraform project.
'';
};
};
defaultTemplate = templates.haskell;
}