try
This commit is contained in:
parent
9e0624eaf1
commit
2c8bd2e098
1 changed files with 5 additions and 2 deletions
|
|
@ -1,4 +1,7 @@
|
||||||
{ lib, ... }:
|
{ lib, ... }:
|
||||||
|
let
|
||||||
|
cfg = config.cids;
|
||||||
|
in
|
||||||
{
|
{
|
||||||
|
|
||||||
options.cids = {
|
options.cids = {
|
||||||
|
|
@ -7,7 +10,7 @@
|
||||||
description = lib.mdDoc ''
|
description = lib.mdDoc ''
|
||||||
The user IDs used for containers.
|
The user IDs used for containers.
|
||||||
'';
|
'';
|
||||||
type = lib.types.attrsOf types.int;
|
type = types.attrsOf types.int;
|
||||||
};
|
};
|
||||||
|
|
||||||
gids = lib.mkOption {
|
gids = lib.mkOption {
|
||||||
|
|
@ -15,7 +18,7 @@
|
||||||
description = lib.mdDoc ''
|
description = lib.mdDoc ''
|
||||||
The group IDs used for containers.
|
The group IDs used for containers.
|
||||||
'';
|
'';
|
||||||
type = lib.types.attrsOf types.int;
|
type = types.attrsOf types.int;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
config = {
|
config = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue