-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathflake.nix
More file actions
29 lines (25 loc) · 754 Bytes
/
Copy pathflake.nix
File metadata and controls
29 lines (25 loc) · 754 Bytes
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
{ outputs = { self }: {
templates = {
setup = {
path = ./templates/setup;
description = "A flake you can use to launch a NixOS VM";
};
server = {
path = ./templates/server;
description = "A prototype TODO list web application";
};
terraform = {
path = ./templates/terraform;
description = "A terraform project to deploy the web application";
};
continuous-deployment = {
path = ./templates/continuous-deployment;
description = "A flake for continuous integration and continuous deployment";
};
integration-test = {
path = ./templates/integration-test;
description = "A sample NixOS test";
};
};
};
}