From beb5ec1e85e02bbb78c2a94445fb443f545672a3 Mon Sep 17 00:00:00 2001 From: diniamo Date: Sun, 20 Oct 2024 21:05:29 +0200 Subject: [PATCH] nixos/transmission: change umask's default value to match Transmission's --- nixos/modules/services/torrent/transmission.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/torrent/transmission.nix b/nixos/modules/services/torrent/transmission.nix index d25a3a8b6262e8..b16f5c97fe4bbe 100644 --- a/nixos/modules/services/torrent/transmission.nix +++ b/nixos/modules/services/torrent/transmission.nix @@ -134,7 +134,7 @@ in }; options.umask = mkOption { type = types.str; - default = "002"; + default = "022"; description = '' Sets transmission's file mode creation mask. See the umask(2) manpage for more information.