From 766ce5fc8c3e17fb9dd82a95aff9aa83bc078f78 Mon Sep 17 00:00:00 2001 From: Henry-Hiles Date: Fri, 20 Jun 2025 09:39:09 -0400 Subject: [PATCH] Fix group --- module.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/module.nix b/module.nix index 48700c0..4b6f56c 100644 --- a/module.nix +++ b/module.nix @@ -12,16 +12,18 @@ in { enable = lib.mkEnableOption "the matrixoidc server"; package = lib.mkPackageOption self.packages.${pkgs.system} "default" {}; - group = lib.mkOption { - type = lib.types.string; - }; - jwtSecretFile = lib.mkOption { type = lib.types.path; }; + group = lib.mkOption { + type = lib.types.string; + default = "matrixoidc"; + }; + args = lib.mkOption { type = lib.types.string; + default = ""; }; };