diff --git a/hosts/fw.cloonar.com/modules/staticids.nix b/hosts/fw.cloonar.com/modules/staticids.nix index 4b669d6..165141e 100644 --- a/hosts/fw.cloonar.com/modules/staticids.nix +++ b/hosts/fw.cloonar.com/modules/staticids.nix @@ -1,4 +1,7 @@ { lib, ... }: +let + cfg = config.cids; +in { options.cids = { @@ -7,7 +10,7 @@ description = lib.mdDoc '' The user IDs used for containers. ''; - type = lib.types.attrsOf types.int; + type = types.attrsOf types.int; }; gids = lib.mkOption { @@ -15,7 +18,7 @@ description = lib.mdDoc '' The group IDs used for containers. ''; - type = lib.types.attrsOf types.int; + type = types.attrsOf types.int; }; }; config = {