nixos: services: jellyfin: loosen umask
ci/woodpecker/push/check Pipeline was successful Details

I just noticed that all the metadata files Jellyfin stores have very
restrictive ACLs.

The whole point of the `media` group is to make my HTPC eco-system work
together. In particular this should allow Sonarr and friends to delete
folders without manual intervention.
This commit is contained in:
Bruno BELANYI 2023-12-26 15:17:03 +01:00
parent 71ee178510
commit 932717b754
1 changed files with 7 additions and 0 deletions

View File

@ -17,6 +17,13 @@ in
# Set-up media group
users.groups.media = { };
systemd.services.jellyfin = {
serviceConfig = {
# Loose umask to make Jellyfin metadata more broadly readable
UMask = lib.mkForce "0002";
};
};
my.services.nginx.virtualHosts = {
jellyfin = {
port = 8096;