This commit is contained in:
2023-12-05 12:28:29 +01:00
parent 9e0624eaf1
commit 2c8bd2e098

View File

@@ -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 = {