Dont use deprecated types

This commit is contained in:
Henry Hiles 2025-06-20 09:41:34 -04:00
commit 461e5bdfcf
No known key found for this signature in database

View file

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