Loading nixos/modules/misc/ids.nix +2 −2 Original line number Diff line number Diff line Loading @@ -31,7 +31,7 @@ in description = '' The user IDs used in NixOS. ''; type = types.attrsOf types.int; type = types.attrsOf types.ints.u32; }; ids.gids = lib.mkOption { Loading @@ -39,7 +39,7 @@ in description = '' The group IDs used in NixOS. ''; type = types.attrsOf types.int; type = types.attrsOf types.ints.u32; }; }; Loading nixos/modules/programs/shadow.nix +8 −8 Original line number Diff line number Diff line Loading @@ -77,49 +77,49 @@ in SYS_UID_MIN = lib.mkOption { description = "Range of user IDs used for the creation of system users by useradd or newusers."; default = 400; type = lib.types.int; type = lib.types.ints.u32; }; SYS_UID_MAX = lib.mkOption { description = "Range of user IDs used for the creation of system users by useradd or newusers."; default = 999; type = lib.types.int; type = lib.types.ints.u32; }; UID_MIN = lib.mkOption { description = "Range of user IDs used for the creation of regular users by useradd or newusers."; default = 1000; type = lib.types.int; type = lib.types.ints.u32; }; UID_MAX = lib.mkOption { description = "Range of user IDs used for the creation of regular users by useradd or newusers."; default = 29999; type = lib.types.int; type = lib.types.ints.u32; }; SYS_GID_MIN = lib.mkOption { description = "Range of group IDs used for the creation of system groups by useradd, groupadd, or newusers"; default = 400; type = lib.types.int; type = lib.types.ints.u32; }; SYS_GID_MAX = lib.mkOption { description = "Range of group IDs used for the creation of system groups by useradd, groupadd, or newusers"; default = 999; type = lib.types.int; type = lib.types.ints.u32; }; GID_MIN = lib.mkOption { description = "Range of group IDs used for the creation of regular groups by useradd, groupadd, or newusers."; default = 1000; type = lib.types.int; type = lib.types.ints.u32; }; GID_MAX = lib.mkOption { description = "Range of group IDs used for the creation of regular groups by useradd, groupadd, or newusers."; default = 29999; type = lib.types.int; type = lib.types.ints.u32; }; TTYGROUP = lib.mkOption { Loading nixos/modules/services/development/distccd.nix +1 −1 Original line number Diff line number Diff line Loading @@ -65,7 +65,7 @@ in }; nice = lib.mkOption { type = lib.types.nullOr lib.types.int; type = lib.types.nullOr (lib.types.ints.between (-20) 19); default = null; description = '' Niceness of the compilation tasks. Loading nixos/modules/services/logging/journalwatch.nix +1 −1 Original line number Diff line number Diff line Loading @@ -72,7 +72,7 @@ in package = lib.mkPackageOption pkgs "journalwatch" { }; priority = lib.mkOption { type = lib.types.int; type = lib.types.ints.between 0 7; default = 6; description = '' Lowest priority of message to be considered. Loading nixos/modules/services/misc/cpuminer-cryptonight.nix +1 −1 Original line number Diff line number Diff line Loading @@ -43,7 +43,7 @@ in description = "Password for mining server"; }; threads = lib.mkOption { type = lib.types.int; type = lib.types.ints.unsigned; default = 0; description = "Number of miner threads, defaults to available processors"; }; Loading Loading
nixos/modules/misc/ids.nix +2 −2 Original line number Diff line number Diff line Loading @@ -31,7 +31,7 @@ in description = '' The user IDs used in NixOS. ''; type = types.attrsOf types.int; type = types.attrsOf types.ints.u32; }; ids.gids = lib.mkOption { Loading @@ -39,7 +39,7 @@ in description = '' The group IDs used in NixOS. ''; type = types.attrsOf types.int; type = types.attrsOf types.ints.u32; }; }; Loading
nixos/modules/programs/shadow.nix +8 −8 Original line number Diff line number Diff line Loading @@ -77,49 +77,49 @@ in SYS_UID_MIN = lib.mkOption { description = "Range of user IDs used for the creation of system users by useradd or newusers."; default = 400; type = lib.types.int; type = lib.types.ints.u32; }; SYS_UID_MAX = lib.mkOption { description = "Range of user IDs used for the creation of system users by useradd or newusers."; default = 999; type = lib.types.int; type = lib.types.ints.u32; }; UID_MIN = lib.mkOption { description = "Range of user IDs used for the creation of regular users by useradd or newusers."; default = 1000; type = lib.types.int; type = lib.types.ints.u32; }; UID_MAX = lib.mkOption { description = "Range of user IDs used for the creation of regular users by useradd or newusers."; default = 29999; type = lib.types.int; type = lib.types.ints.u32; }; SYS_GID_MIN = lib.mkOption { description = "Range of group IDs used for the creation of system groups by useradd, groupadd, or newusers"; default = 400; type = lib.types.int; type = lib.types.ints.u32; }; SYS_GID_MAX = lib.mkOption { description = "Range of group IDs used for the creation of system groups by useradd, groupadd, or newusers"; default = 999; type = lib.types.int; type = lib.types.ints.u32; }; GID_MIN = lib.mkOption { description = "Range of group IDs used for the creation of regular groups by useradd, groupadd, or newusers."; default = 1000; type = lib.types.int; type = lib.types.ints.u32; }; GID_MAX = lib.mkOption { description = "Range of group IDs used for the creation of regular groups by useradd, groupadd, or newusers."; default = 29999; type = lib.types.int; type = lib.types.ints.u32; }; TTYGROUP = lib.mkOption { Loading
nixos/modules/services/development/distccd.nix +1 −1 Original line number Diff line number Diff line Loading @@ -65,7 +65,7 @@ in }; nice = lib.mkOption { type = lib.types.nullOr lib.types.int; type = lib.types.nullOr (lib.types.ints.between (-20) 19); default = null; description = '' Niceness of the compilation tasks. Loading
nixos/modules/services/logging/journalwatch.nix +1 −1 Original line number Diff line number Diff line Loading @@ -72,7 +72,7 @@ in package = lib.mkPackageOption pkgs "journalwatch" { }; priority = lib.mkOption { type = lib.types.int; type = lib.types.ints.between 0 7; default = 6; description = '' Lowest priority of message to be considered. Loading
nixos/modules/services/misc/cpuminer-cryptonight.nix +1 −1 Original line number Diff line number Diff line Loading @@ -43,7 +43,7 @@ in description = "Password for mining server"; }; threads = lib.mkOption { type = lib.types.int; type = lib.types.ints.unsigned; default = 0; description = "Number of miner threads, defaults to available processors"; }; Loading