nixos: services: transmission: fix umask

I want downloads to be readable by the `media` group. The permissions
weren't correctly applied without `umask`.
This commit is contained in:
Bruno BELANYI 2025-04-16 15:29:10 +02:00
parent c69aaa7adb
commit e4bc0444bf

View file

@ -65,6 +65,8 @@ in
# Proxied behind Nginx.
rpc-whitelist-enabled = true;
rpc-whitelist = "127.0.0.1";
umask = "002"; # To go with `downloadDirPermissions`
};
};