-
Notifications
You must be signed in to change notification settings - Fork 0
/
conf.nix
35 lines (28 loc) · 809 Bytes
/
conf.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
{ lib }: {
siteUrl = https://dermetfan.net;
theme = {
itemsPerPage = 10;
site = {
title = "dermetfan";
description = "Blog";
copyright = "Public Domain";
};
social = {
github = https://github.com/dermetfan;
# email = "[email protected]"; # bug in styx templates/partials/content-pre.nix
linked-in = https://www.linkedin.com/in/dermetfan;
stack-overflow = https://stackoverflow.com/users/2317275/dermetfan?tab=profile;
twitter = https://twitter.com/dermetfan;
};
lib = {
highlightjs = {
enable = true;
extraLanguages = [ "nix" "rust" ];
};
jquery.enable = false;
googlefonts = [];
};
services.disqus.shortname = "dermetfan-blog";
};
data.hashes = import ./hashes.nix;
}