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:
parent
c69aaa7adb
commit
e4bc0444bf
1 changed files with 2 additions and 0 deletions
|
|
@ -65,6 +65,8 @@ in
|
||||||
# Proxied behind Nginx.
|
# Proxied behind Nginx.
|
||||||
rpc-whitelist-enabled = true;
|
rpc-whitelist-enabled = true;
|
||||||
rpc-whitelist = "127.0.0.1";
|
rpc-whitelist = "127.0.0.1";
|
||||||
|
|
||||||
|
umask = "002"; # To go with `downloadDirPermissions`
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue