diff --git a/modules/system/meta/domains.nix b/modules/system/meta/domains.nix index 078f935..1b6e928 100644 --- a/modules/system/meta/domains.nix +++ b/modules/system/meta/domains.nix @@ -12,7 +12,6 @@ in list = lib.mkOption { type = lib.types.listOf lib.types.nonEmptyStr; default = [ ]; - internal = true; }; globalList = lib.mkOption { type = lib.types.listOf lib.types.nonEmptyStr; @@ -20,7 +19,6 @@ in self.nixosConfigurations |> lib.mapAttrsToList (_: value: value.config.meta.domains.list) |> lib.concatLists; - internal = true; readOnly = true; }; assertUnique = lib.mkEnableOption "" // { diff --git a/modules/system/meta/ports.nix b/modules/system/meta/ports.nix index 4c7fde1..33ab60c 100644 --- a/modules/system/meta/ports.nix +++ b/modules/system/meta/ports.nix @@ -12,7 +12,6 @@ in list = lib.mkOption { type = lib.types.listOf lib.types.port; default = [ ]; - internal = true; }; assertUnique = lib.mkEnableOption "" // { default = true;