Updated docs

This commit is contained in:
rasmus-kirk
2024-03-12 23:52:19 +01:00
parent 712dc3728e
commit 6c1f6bfd52
8 changed files with 10 additions and 9 deletions
+1 -1
View File
@@ -35,7 +35,7 @@ in {
openFirewall = mkOption {
type = types.bool;
defaultText = literalExpression ''!cfg.vpn.enable'';
defaultText = literalExpression ''!nixarr.bazarr.vpn.enable'';
default = !cfg.vpn.enable;
example = true;
description = "Open firewall for Bazarr";
+2 -1
View File
@@ -32,7 +32,7 @@ in
openFirewall = mkOption {
type = types.bool;
defaultText = literalExpression ''!cfg.vpn.enable'';
defaultText = literalExpression ''!nixarr.jellyfin.vpn.enable'';
default = !cfg.vpn.enable;
example = true;
description = "Open firewall for Jellyfin";
@@ -44,6 +44,7 @@ in
example = true;
description = ''
**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.
+1 -1
View File
@@ -32,7 +32,7 @@ in {
openFirewall = mkOption {
type = types.bool;
defaultText = literalExpression ''!cfg.vpn.enable'';
defaultText = literalExpression ''!nixarr.lidarr.vpn.enable'';
default = !cfg.vpn.enable;
example = true;
description = "Open firewall for Lidarr";
+1 -1
View File
@@ -37,7 +37,7 @@ in {
openFirewall = mkOption {
type = types.bool;
defaultText = literalExpression ''!cfg.vpn.enable'';
defaultText = literalExpression ''!nixarr.prowlarr.vpn.enable'';
default = !cfg.vpn.enable;
example = true;
description = "Open firewall for Prowlarr";
+1 -1
View File
@@ -33,7 +33,7 @@ in {
openFirewall = mkOption {
type = types.bool;
defaultText = literalExpression ''!cfg.vpn.enable'';
defaultText = literalExpression ''!nixarr.radarr.vpn.enable'';
default = !cfg.vpn.enable;
example = true;
description = "Open firewall for Radarr";
+1 -1
View File
@@ -31,7 +31,7 @@ in {
openFirewall = mkOption {
type = types.bool;
defaultText = literalExpression ''!cfg.vpn.enable'';
defaultText = literalExpression ''!nixarr.readarr.vpn.enable'';
default = !cfg.vpn.enable;
example = true;
description = "Open firewall for Readarr";
+1 -1
View File
@@ -37,7 +37,7 @@ in {
openFirewall = mkOption {
type = types.bool;
defaultText = literalExpression ''!cfg.vpn.enable'';
defaultText = literalExpression ''!nixarr.sonarr.vpn.enable'';
default = !cfg.vpn.enable;
example = true;
description = "Open firewall for Sonarr";
+2 -2
View File
@@ -88,7 +88,7 @@ in {
openFirewall = mkOption {
type = types.bool;
defaultText = literalExpression ''!cfg.vpn.enable'';
defaultText = literalExpression ''!nixarr.transmission.vpn.enable'';
default = !cfg.vpn.enable;
example = true;
description = "Open firewall for `peer-port` and `rpc-port`.";
@@ -101,7 +101,7 @@ in {
description = ''
**Required options:** [`nixarr.vpn.enable`](#nixarr.vpn.enable)
**Recommended:** Route Transmission traffic through the VPN.
Route Transmission traffic through the VPN.
'';
};