-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.nix
65 lines (56 loc) · 1.36 KB
/
config.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
baseurl = "https://zoenglinghou.github.io/";
title = "Zoeng Linghou";
theme = "hugo-coder";
languageCode = "en-us";
defaultcontentlanguage = "en";
paginate = 5;
publishDir = "docs";
pygmentsstyle = "bw";
pygmentscodefences = true;
pygmentscodefencesguesssyntax = true;
params = {
author = "Linghao Zhang";
info = "Robotics Engineer & Linux DevOps";
description = "A personal webpage built with Hugo and Nix Flake";
keywords = "robotics,engineering,linux,devops";
avatarurl = "img/avatar.jpg";
since = 2022;
math = true;
colorScheme = "auto";
social = [
{
name = "Github";
icon = "fa fa-github fa-2x";
weight = 1;
url = "https://github.com/zoenglinghou/";
}
{
name = "Codeberg";
icon = "fa fa-git fa-2x";
weight = 1;
url = "https://codeberg.org/zoenglinghou/";
}
{
name = "LinkedIn";
icon = "fa fa-linkedin fa-2x";
weight = 1;
url = "https://www.linkedin.com/in/linghao-zhang/";
}
{
name = "Mastodon";
icon = "fa fa-mastodon fa-2x";
weight = 1;
url = "https://m.cmx.im/web/@carlosevo";
}
];
};
menu.main = [
{
name = "about";
weight = 1;
url = "/about";
}
];
markup.goldmark.renderer = { unsafe = true; };
}