-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
42 lines (40 loc) · 1.24 KB
/
Copy pathflake.nix
File metadata and controls
42 lines (40 loc) · 1.24 KB
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
{
description = "nix templates for convenience";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-parts.url = "github:hercules-ci/flake-parts";
};
outputs = inputs:
inputs.flake-parts.lib.mkFlake {inherit inputs;} {
flake.templates = {
doortag = {
path = ./templates/tex/doortag;
description = "template for making tags via tex";
};
eisvogel = {
path = ./templates/tex/eisvogel;
description = "template for documents via eisvogel tex template";
};
letter = {
path = ./templates/tex/letter;
description = "template for writing letter via tex";
};
python = {
path = ./templates/python;
description = "template for python project";
};
typst-base = {
path = ./templates/typst/base;
description = "template for bare typst project";
};
typst-letter = {
path = ./templates/typst/letter;
description = "template for writing letter via typst";
};
typst-name-tag = {
path = ./templates/typst/name-tag;
description = "template for making tags via typst";
};
};
};
}