stuebinm
0e1f14957e
in summary:
- update inputs
- copy a fix for the nopersist module from hexchen's nixfiles
d0b3a042ff
- remove an already-outdated override in pkgs
- update zola's config for the docs.hacc.space website
35 lines
748 B
TOML
35 lines
748 B
TOML
# Zola's configuration file,
|
|
#
|
|
# see https://www.getzola.org/documentation/getting-started/configuration/
|
|
# for available keys.
|
|
|
|
# The URL the site will be built for
|
|
base_url = "https://docs.hacc.space"
|
|
|
|
compile_sass = true
|
|
default_language = "en"
|
|
|
|
# might be useful — this isn't a blog, obviously, but updates for new entries
|
|
# could still be nice, I guess
|
|
generate_feeds = true
|
|
feed_filenames = [ "atom.xml" ]
|
|
|
|
build_search_index = true
|
|
|
|
taxonomies = [
|
|
{ name = "categories", feed = false},
|
|
]
|
|
|
|
[markdown]
|
|
highlight_code = true
|
|
|
|
[extra] # user-defined keys
|
|
|
|
# site title text
|
|
main_title = "haccfiles documentation"
|
|
|
|
# navbar entries
|
|
main_menu = [
|
|
{url = "$BASE_URL", name = "Home"},
|
|
{url = "$BASE_URL/categories", name = "Categories"}
|
|
]
|