nixos/icecream: use more accurate int types

h7x4 2a3f5511 33fb2c08

Changed files
+1 -1
nixos
modules
services
networking
icecream
+1 -1
nixos/modules/services/networking/icecream/daemon.nix
···
};
nice = mkOption {
-
type = types.int;
default = 5;
description = ''
The level of niceness to use.
···
};
nice = mkOption {
+
type = types.ints.between (-20) 19;
default = 5;
description = ''
The level of niceness to use.