fix cids
This commit is contained in:
parent
855bd4d3ec
commit
cb8e2526e3
2 changed files with 9 additions and 27 deletions
|
|
@ -3,31 +3,12 @@ let
|
|||
inherit (lib) types;
|
||||
in
|
||||
{
|
||||
options.cids = {
|
||||
uids = lib.mkOption {
|
||||
readOnly = true;
|
||||
description = lib.mdDoc ''
|
||||
The user IDs used for containers.
|
||||
'';
|
||||
type = types.attrsOf types.int;
|
||||
ids = {
|
||||
uids = {
|
||||
unbound = 10001;
|
||||
};
|
||||
|
||||
gids = lib.mkOption {
|
||||
readOnly = true;
|
||||
description = lib.mdDoc ''
|
||||
The group IDs used for containers.
|
||||
'';
|
||||
type = types.attrsOf types.int;
|
||||
};
|
||||
};
|
||||
config = {
|
||||
cids = {
|
||||
uids = {
|
||||
unbound = 10001;
|
||||
};
|
||||
gids = {
|
||||
unbound = 10001;
|
||||
};
|
||||
gids = {
|
||||
unbound = 10001;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue