Fix group

This commit is contained in:
Henry Hiles 2025-06-20 09:39:09 -04:00
commit 766ce5fc8c
No known key found for this signature in database

View file

@ -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 = "";
};
};