-
Notifications
You must be signed in to change notification settings - Fork 0
/
nxt.sh
executable file
·84 lines (63 loc) · 1.77 KB
/
nxt.sh
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#!/bin/env bash
android() {
nix flake init -t github:MordragT/nix-templates#android
}
angular() {
nix flake init -t github:MordragT/nix-templates#angular
}
cpp() {
nix flake init -t github:MordragT/nix-templates#cpp
}
deno() {
nix flake init -t github:MordragT/nix-templates#deno
}
kotlin() {
nix flake init -t github:MordragT/nix-templates#kotlin
}
mdbook() {
nix flake init -t github:MordragT/nix-templates#deno
}
python-micromamba() {
nix flake init -t github:MordragT/nix-templates#python-micromamba
}
python-poetry() {
nix flake init -t github:MordragT/nix-templates#python-poetry
}
python-venv() {
nix flake init -t github:MordragT/nix-templates#python-poetry
}
python() {
nix flake init -t github:MordragT/nix-templates#python
}
rust-nightly() {
nix flake init -t github:MordragT/nix-templates#rust-nightly
}
rust-stable() {
nix flake init -t github:MordragT/nix-templates#rust-stable
}
slides-fh-aachen() {
nix flake init -t github:MordragT/nix-templates#slides-fh-aachen
}
slides() {
nix flake init -t github:MordragT/nix-templates#slides
}
stm32-platformio() {
nix flake init -t github:MordragT/nix-templates#stm32-platformio
}
svelte-tailwind() {
nix flake init -t github:MordragT/nix-templates#svelte-tailwind
}
tauri() {
nix flake init -t github:MordragT/nix-templates#tauri
}
tex() {
nix flake init -t github:MordragT/nix-templates#tex
}
trivial() {
nix flake init -t github:MordragT/nix-templates#trivial
}
typst() {
nix flake init -t github:MordragT/nix-templates#typst
}
run=$(gum choose "android" "angular" "cpp" "deno" "kotlin" "mdbook" "python-micromamba" "python-poetry" "python-venv" "python" "rust-nightly" "rust-stable" "slides-fh-aachen" "slides" "stm32-platformio" "svelte-tailwind" "tauri" "tex" "trivial" "typst") &&
$run