From 068a99ce60733fa80135f92bd9df9fe3d5496a37 Mon Sep 17 00:00:00 2001 From: rasmus-kirk Date: Wed, 28 Feb 2024 12:53:01 +0100 Subject: [PATCH] updated docs --- docs/pandoc/style.css | 3 +++ nixarr/jellyfin/default.nix | 6 +++--- nixarr/openssh/default.nix | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/docs/pandoc/style.css b/docs/pandoc/style.css index 1ad9d8b..b583ac8 100644 --- a/docs/pandoc/style.css +++ b/docs/pandoc/style.css @@ -85,6 +85,9 @@ nav a.active { color: #faf8e4 !important; } +a code { + text-decoration-line: underline; +} footer { height: 2rem; diff --git a/nixarr/jellyfin/default.nix b/nixarr/jellyfin/default.nix index 1cd5c56..7ee40b4 100644 --- a/nixarr/jellyfin/default.nix +++ b/nixarr/jellyfin/default.nix @@ -22,7 +22,7 @@ in with lib; { type = types.bool; default = false; description = '' - **Required options:** [`nixarr.vpn.enable`](#nixarr.vpn.enable) + **Required options:** [`nixarr.vpn.enable`](#nixarr.vpn.enable) **Conflicting options:** [`nixarr.jellyfin.expose.https.enable`](#nixarr.jellyfin.expose.https.enable) Route Jellyfin traffic through the VPN. @@ -44,7 +44,7 @@ in with lib; { Expose the Jellyfin web service to the internet, allowing anyone to access it. - **Important:** Do _not_ enable this without setting up Jellyfin + **Warning:** Do _not_ enable this without setting up Jellyfin authentication through localhost first! ''; }; @@ -83,7 +83,7 @@ in with lib; { Expose the Jellyfin web service to the internet with https support, allowing anyone to access it. - **Important:** Do _not_ enable this without setting up Jellyfin + **Warning:** Do _not_ enable this without setting up Jellyfin authentication through localhost first! ''; }; diff --git a/nixarr/openssh/default.nix b/nixarr/openssh/default.nix index ccca227..52e3d1f 100644 --- a/nixarr/openssh/default.nix +++ b/nixarr/openssh/default.nix @@ -15,7 +15,7 @@ in { Run the openssh service through a vpn, exposing it to the internet. - **Important:** This lets anyone on the internet connect through SSH, + **Warning:** This lets anyone on the internet connect through SSH, make sure the SSH configuration is secure! Disallowing password authentication and only allowing SSH-keys is considered secure.