try
This commit is contained in:
parent
85cdde777b
commit
9e0624eaf1
2 changed files with 31 additions and 9 deletions
|
|
@ -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;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue