blob: 3013db260a65b1c171f25613a29f46ad89672e2c (
plain)
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
|
#import "/global/common.typ": *
#let source(dest) = html.p(class: "source", extlink(dest)[source])
#let description(body) = html.p(class: "description", body)
#let doc = [
Here you can find a list of my note-worthy public repositories, all hosted
on #extlink("https://git.kumardamani.net")[git].
#show list: prev => html.ul(class: "biglist", {
for c in prev.children {
html.li(c.body)
}
})
-
= home-lab
#description[
My Nix, Terraform, Ansible repository for self-hosting,
as started in #pagelink("post/framework-server")[this post].
]
#source("https://git.kumardamani.net/home-lab/about")
-
= nixdots
#description[
My dotfiles for the Nix ecosystem, as started in
#pagelink("post/nixos-p1")[this post].
]
#source("https://git.kumardamani.net/dotfiles-nix/about")
-
= nccli
#description[
A Go CLI for managing DNS on Namecheap.
]
#source("https://git.kumardamani.net/nccli/about")
-
= namemydragon.lol
#description[
A western themed meme site for identifying your dragon
from the Game of Thrones universe.
#extlink("https://namemydragon.lol")[Try it] and turn on your sound!
]
#source("https://git.kumardamani.net/namemydragon/about")
]
|