about summary refs log tree commit diff
diff options
context:
space:
mode:
authorrasmus-kirk <mail@rasmuskirk.com>2024-02-09 20:47:48 +0100
committertomf <tom@tom-fitzhenry.me.uk>2024-02-18 23:45:10 +1100
commit9f2d51a4e7adac81e6dfcbbdacac0a498591a663 (patch)
tree80a378933a2eb55802e64b3249008773a8a33257
parent850934d1c1ffa1f08e6de31158fe6e91e53a8e7c (diff)
nixos/transmission: fix log level bounds to match the transmission wiki
-rw-r--r--nixos/modules/services/torrent/transmission.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/torrent/transmission.nix b/nixos/modules/services/torrent/transmission.nix
index 5dd02eb331633..a9fb123b981ec 100644
--- a/nixos/modules/services/torrent/transmission.nix
+++ b/nixos/modules/services/torrent/transmission.nix
@@ -74,7 +74,7 @@ in
             description = lib.mdDoc "";
           };
           options.message-level = mkOption {
-            type = types.ints.between 0 3;
+            type = types.ints.between 0 6;
             default = 2;
             description = lib.mdDoc "Set verbosity of transmission messages.";
           };