From 4231b0cecf71b295e4028667f42f43ded0602c0f Mon Sep 17 00:00:00 2001 From: Ladas552 <94762349+Ladas552@users.noreply.github.com> Date: Sun, 3 May 2026 20:33:50 +0500 Subject: [PATCH] nixos/sunshine: new documentation links --- nixos/modules/services/networking/sunshine.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nixos/modules/services/networking/sunshine.nix b/nixos/modules/services/networking/sunshine.nix index 61c6bdf387b7..b4f731b3486d 100644 --- a/nixos/modules/services/networking/sunshine.nix +++ b/nixos/modules/services/networking/sunshine.nix @@ -20,7 +20,7 @@ let inherit (utils) escapeSystemdExecArgs; cfg = config.services.sunshine; - # ports used are offset from a single base port, see https://docs.lizardbyte.dev/projects/sunshine/en/latest/about/advanced_usage.html#port + # ports used are offset from a single base port, see https://docs.lizardbyte.dev/projects/sunshine/latest/md_docs_2configuration.html#port generatePorts = port: offsets: map (offset: port + offset) offsets; defaultPort = 47989; @@ -60,7 +60,7 @@ in description = '' Settings to be rendered into the configuration file. If this is set, no configuration is possible from the web UI. - See . + See for syntax. ''; example = literalExpression '' { @@ -73,7 +73,7 @@ in type = port; default = defaultPort; description = '' - Base port -- others used are offset from this one, see for details. + Base port -- others used are offset from this one, see for details. ''; }; });