nixos/journalwatch: use more accurate int types

h7x4 34fe1083 f9e472b7

Changed files
+1 -1
nixos
modules
services
+1 -1
nixos/modules/services/logging/journalwatch.nix
···
package = lib.mkPackageOption pkgs "journalwatch" { };
priority = lib.mkOption {
-
type = lib.types.int;
default = 6;
description = ''
Lowest priority of message to be considered.
···
package = lib.mkPackageOption pkgs "journalwatch" { };
priority = lib.mkOption {
+
type = lib.types.ints.between 0 7;
default = 6;
description = ''
Lowest priority of message to be considered.