NixOS configuration for HPC cluster
https://docs.hpc.informatik.hs-fulda.de/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.1 KiB
57 lines
1.1 KiB
{ config, ... }:
|
|
|
|
{
|
|
site_name = "HPC @ HS-Fulda";
|
|
site_description = ''
|
|
User documentation for high performance cluster on University of Applied Sciences Fulda
|
|
'';
|
|
site_url = "http://${config.networking.domain}/";
|
|
|
|
use_directory_urls = false;
|
|
strict = true;
|
|
|
|
repo_url = "https://gogs.informatik.hs-fulda.de/hpc/nixcfg.git";
|
|
|
|
docs_dir = ./content;
|
|
|
|
theme = {
|
|
name = "readthedocs";
|
|
locale = "de";
|
|
prev_next_buttons_location = "none";
|
|
highlightjs = true;
|
|
hljs_languages = [
|
|
"bash"
|
|
"yaml"
|
|
"rust"
|
|
];
|
|
};
|
|
|
|
markdown_extensions = [
|
|
"extra"
|
|
"admonition"
|
|
];
|
|
|
|
plugins = [
|
|
"search"
|
|
];
|
|
|
|
extra = {
|
|
"manager"."host" = config.networking.domain;
|
|
};
|
|
|
|
nav = [
|
|
{ "Start" = "index.md"; }
|
|
{ "Erste Schritte" = "first_steps.md"; }
|
|
{ "Nutzung" = "usage.md"; }
|
|
{ "Software" = "environment.md"; }
|
|
{ "Daten" = "storage.md"; }
|
|
{ "Best Practices" = "best_practice.md"; }
|
|
{ "Hilfe" = "support.md"; }
|
|
{
|
|
"Internes" = [
|
|
{ "Deployment" = "internal/deployment.md"; }
|
|
{ "Netzwerk" = "internal/network.md"; }
|
|
];
|
|
}
|
|
];
|
|
}
|