diff --git a/clanServices/customer-portal/README.md b/clanServices/customer-portal/README.md index cec9c07..e69de29 100644 --- a/clanServices/customer-portal/README.md +++ b/clanServices/customer-portal/README.md @@ -1 +0,0 @@ -# Customer portal Clan-service diff --git a/clanServices/customer-portal/default.nix b/clanServices/customer-portal/default.nix index 058d5c3..a2767f2 100644 --- a/clanServices/customer-portal/default.nix +++ b/clanServices/customer-portal/default.nix @@ -16,8 +16,6 @@ in # Server configuration #============================================================================================================== roles.server = { - description = "A server hosts the portal"; - interface = { lib, ... }: let inherit (lib) mkOption types toString; diff --git a/clanServices/k3s/README.md b/clanServices/k3s/README.md index 2f4c0fa..e69de29 100644 --- a/clanServices/k3s/README.md +++ b/clanServices/k3s/README.md @@ -1 +0,0 @@ -# K3s Clan-service diff --git a/clanServices/k3s/default.nix b/clanServices/k3s/default.nix index a98a4a2..e93d1e6 100644 --- a/clanServices/k3s/default.nix +++ b/clanServices/k3s/default.nix @@ -16,8 +16,6 @@ in # Server configuration #============================================================================================================== roles.server = { - description = "A server manages the cluster"; - interface = { lib, ... }: let inherit (lib) mkOption mkEnableOption mkIf types toString; @@ -186,8 +184,6 @@ in # Agent configuration #============================================================================================================== roles.agent = { - description = "An agent connects to the server"; - interface = { lib, ... }: { options = {}; }; diff --git a/clanServices/zitadel/default.nix b/clanServices/zitadel/default.nix index 328a912..003ac7c 100644 --- a/clanServices/zitadel/default.nix +++ b/clanServices/zitadel/default.nix @@ -17,8 +17,6 @@ in # Controller configuration #============================================================================================================== roles.controller = { - description = "A controller that manages the instance"; - interface = { options = { hostName = mkOption { @@ -77,21 +75,6 @@ in }; in { - assertions = - let - inherit (lib) attrValues any; - in - [ - { - assertion = - config.services.k3s.enable == true; - # config.clan.inventory.instances - # |> attrValues - # |> any ({ module, ... }: module.name == "k3s"); - message = "This module requires k3s in order to run"; - } - ]; - clan.core.vars.generators.zitadel = { share = false; @@ -242,8 +225,6 @@ in # Peer configuration #============================================================================================================== roles.peer = { - description = "A peer"; - interface = { options = {}; };