nixos/ids: Add types to allow overrides on static uids, gids

This commit is contained in:
Robert Hensing 2019-11-18 09:08:10 +01:00
parent 204bce4bfb
commit f074bfe0a0

View File

@ -11,6 +11,9 @@
{ lib, ... }:
let
inherit (lib) types;
in
{
options = {
@ -19,6 +22,7 @@
description = ''
The user IDs used in NixOS.
'';
type = types.attrsOf types.int;
};
ids.gids = lib.mkOption {
@ -26,6 +30,7 @@
description = ''
The group IDs used in NixOS.
'';
type = types.attrsOf types.int;
};
};