try
This commit is contained in:
@@ -1,8 +1,31 @@
|
||||
{ lib, ... }:
|
||||
{
|
||||
uids = {
|
||||
unbound = 10001;
|
||||
|
||||
options.cids = {
|
||||
uids = lib.mkOption {
|
||||
readOnly = true;
|
||||
description = lib.mdDoc ''
|
||||
The user IDs used for containers.
|
||||
'';
|
||||
type = lib.types.attrsOf types.int;
|
||||
};
|
||||
|
||||
gids = lib.mkOption {
|
||||
readOnly = true;
|
||||
description = lib.mdDoc ''
|
||||
The group IDs used for containers.
|
||||
'';
|
||||
type = lib.types.attrsOf types.int;
|
||||
};
|
||||
};
|
||||
gids = {
|
||||
unbound = 10001;
|
||||
config = {
|
||||
cids = {
|
||||
uids = {
|
||||
unbound = 10001;
|
||||
};
|
||||
gids = {
|
||||
unbound = 10001;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user