From 93b2ef86b30fd525ccd651d3b904635d13bdeded Mon Sep 17 00:00:00 2001 From: Jordan Holt Date: Sat, 10 Jun 2023 21:46:22 +0100 Subject: [PATCH] Fix permissions --- hosts/library/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/hosts/library/default.nix b/hosts/library/default.nix index b7694c5..a529a63 100644 --- a/hosts/library/default.nix +++ b/hosts/library/default.nix @@ -116,7 +116,7 @@ with lib.my; ports = [ "8686:8686/tcp" ]; environment = { PUID = "0"; - GUID = "0"; + PGID = "1000"; }; volumes = [ "lidarr-config:/config:Z" @@ -166,8 +166,8 @@ with lib.my; "6881:6881/udp" ]; environment = { - PUID = "0"; - GUID = "0"; + PUID = "1000"; + PGID = "1000"; }; volumes = [ "qbittorrent-config:/config:Z" @@ -183,7 +183,7 @@ with lib.my; ports = [ "7878:7878/tcp" ]; environment = { PUID = "0"; - GUID = "0"; + PGID = "1000"; }; volumes = [ "radarr-config:/config:Z" @@ -204,7 +204,7 @@ with lib.my; ports = [ "8989:8989/tcp" ]; environment = { PUID = "0"; - GUID = "0"; + PGID = "1000"; }; volumes = [ "sonarr-config:/config:Z"