Dont use deprecated types

This commit is contained in:
Henry Hiles 2025-06-20 09:41:34 -04:00
commit 461e5bdfcf
Signed by: Henry-Hiles
SSH key fingerprint: SHA256:VKQUdS31Q90KvX7EkKMHMBpUspcmItAh86a+v7PGiIs

View file

@ -17,12 +17,12 @@ in {
};
group = lib.mkOption {
type = lib.types.string;
type = lib.types.str;
default = "matrixoidc";
};
args = lib.mkOption {
type = lib.types.string;
type = lib.types.separatedString " ";
default = "";
};
};