Files
sukr/deprecated/config.toml
Timothy DeHerrera 8b1e0d1f29 chore: move zola infrastructure to deprecated/
Relocate legacy static site generator configuration to clear
namespace for new Rust-based compiler:

- config.toml, netlify.toml
- sass/, templates/ directories
- themes/apollo submodule (updated .gitmodules path)

Content directory preserved at root for compatibility.
2026-01-24 18:30:58 -07:00

54 lines
1.6 KiB
TOML

theme = "apollo"
taxonomies = [{ name = "tags" }]
title = "nrdxp"
description = "nrdxp's personal site & blog"
generate_feeds = true
minify_html = true
# The URL the site will be built for
base_url = "https://nrd.sh/"
# Whether to automatically compile all Sass files in the sass directory
compile_sass = true
# Whether to build a search index to be used later on by a JavaScript library
build_search_index = false
[markdown]
# Whether to do syntax highlighting
# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
highlight_code = true
highlight_theme = "ayu-light"
[extra]
theme = "toggle"
socials = [
{ name = "rss", url = "/atom.xml", icon = "rss" },
{ name = "github", url = "https://github.com/nrdxp", icon = "github" },
{ name = "twitter", url = "https://x.com/nrdexp", icon = "x-twitter" },
{ name = "discord", url = "https://discord.com/users/672485325683032094", icon = "discord" },
{ name = "matrix", url = "https://matrix.to/#/@timdeh:matrix.org", icon = "matrix" },
{ name = "email", url = "mailto:tim@nrd.sh", icon = "email" },
]
menu = [
{ name = "/blog", url = "/blog", weight = 1 },
{ name = "/projects", url = "/projects", weight = 2 },
{ name = "/collab", url = "/collab", weight = 3 },
{ name = "/about", url = "/about", weight = 4 },
{ name = "/tags", url = "/tags", weight = 5 },
]
repo_view = true
repo_url = "https://github.com/nrdxp/nrd.sh/tree/main/content/"
favicon = "/icon/favicon.png"
stylesheets = [
"fira.css",
"colors.css",
"custom.css"
]
[extra.analytics]
enabled = true
[extra.analytics.goatcounter]
user = "nrd"