From d75ce74ffaaf70e9b42eff142dd015cac530942f Mon Sep 17 00:00:00 2001 From: rasmus-kirk Date: Wed, 28 May 2025 09:38:44 +0200 Subject: [PATCH] fmt --- nixarr/default.nix | 14 ++++++++------ nixarr/jellyseerr/jellyseerr-module/default.nix | 2 +- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/nixarr/default.nix b/nixarr/default.nix index 940f712..fadeb6d 100644 --- a/nixarr/default.nix +++ b/nixarr/default.nix @@ -235,7 +235,7 @@ in { network. You might have to use this option to extend your list with your local IP range by passing it with this option. ''; - example = [ "192.168.2.0/24" ]; + example = ["192.168.2.0/24"]; }; vpnTestService = { @@ -308,11 +308,13 @@ in { port = cfg.vpn.vpnTestService.port; protocol = "tcp"; }; - accessibleFrom = [ - "192.168.1.0/24" - "192.168.0.0/24" - "127.0.0.1" - ] ++ cfg.vpn.accessibleFrom ; + accessibleFrom = + [ + "192.168.1.0/24" + "192.168.0.0/24" + "127.0.0.1" + ] + ++ cfg.vpn.accessibleFrom; wireguardConfigFile = cfg.vpn.wgConf; }; diff --git a/nixarr/jellyseerr/jellyseerr-module/default.nix b/nixarr/jellyseerr/jellyseerr-module/default.nix index 103131a..80e96aa 100644 --- a/nixarr/jellyseerr/jellyseerr-module/default.nix +++ b/nixarr/jellyseerr/jellyseerr-module/default.nix @@ -82,7 +82,7 @@ in { RemoveIPC = true; PrivateMounts = true; ProtectSystem = "strict"; - ReadWritePaths = [ cfg.configDir ]; + ReadWritePaths = [cfg.configDir]; }; };