Unverified Commit a7a8289e authored by h7x4's avatar h7x4
Browse files

nixos/misc/ids: use more accurate int types

parent 7f0939d1
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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 {
@@ -39,7 +39,7 @@ in
      description = ''
        The group IDs used in NixOS.
      '';
      type = types.attrsOf types.int;
      type = types.attrsOf types.ints.u32;
    };

  };