From 08fc6f49377cfcb1f4958895eef201b49151b880 Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Tue, 1 Jul 2025 10:57:09 +0200 Subject: [PATCH] Don't use internal for options --- modules/system/meta/domains.nix | 2 -- modules/system/meta/ports.nix | 1 - 2 files changed, 3 deletions(-) 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;