From 461e5bdfcff66af55291331563a907ee624abd4a Mon Sep 17 00:00:00 2001 From: Henry-Hiles Date: Fri, 20 Jun 2025 09:41:34 -0400 Subject: [PATCH] Dont use deprecated types --- module.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/module.nix b/module.nix index 4b6f56c..a97c3c4 100644 --- a/module.nix +++ b/module.nix @@ -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 = ""; }; };