nixos/transmission: fix log level bounds to match the transmission wiki

This commit is contained in:
rasmus-kirk
2024-02-18 23:45:10 +11:00
committed by tomf
parent 850934d1c1
commit 9f2d51a4e7
@@ -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.";
};