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

11 months ago
  1. { config, ... }:
  2. {
  3. site_name = "HPC @ HS-Fulda";
  4. site_description = ''
  5. User documentation for high performance cluster on University of Applied Sciences Fulda
  6. '';
  7. site_url = "http://${config.networking.domain}/";
  8. use_directory_urls = false;
  9. strict = true;
  10. repo_url = "https://gogs.informatik.hs-fulda.de/hpc/nixcfg.git";
  11. docs_dir = ./content;
  12. theme = {
  13. name = "readthedocs";
  14. locale = "de";
  15. prev_next_buttons_location = "none";
  16. highlightjs = true;
  17. hljs_languages = [
  18. "bash"
  19. "yaml"
  20. "rust"
  21. ];
  22. };
  23. markdown_extensions = [
  24. "extra"
  25. "admonition"
  26. ];
  27. plugins = [
  28. "search"
  29. ];
  30. extra = {
  31. "manager"."host" = config.networking.domain;
  32. };
  33. nav = [
  34. { "Start" = "index.md"; }
  35. { "Erste Schritte" = "first_steps.md"; }
  36. { "Nutzung" = "usage.md"; }
  37. { "Software" = "environment.md"; }
  38. { "Daten" = "storage.md"; }
  39. { "Best Practices" = "best_practice.md"; }
  40. { "Hilfe" = "support.md"; }
  41. {
  42. "Internes" = [
  43. { "Deployment" = "internal/deployment.md"; }
  44. { "Netzwerk" = "internal/network.md"; }
  45. ];
  46. }
  47. ];
  48. }