From 700ac98266e4b80476394e57e2b0904716b1f079 Mon Sep 17 00:00:00 2001 From: Thary Date: Tue, 16 Sep 2025 19:30:19 +0300 Subject: [PATCH] fix(email-options): fix incorrect option type --- selfprivacy-module.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selfprivacy-module.nix b/selfprivacy-module.nix index 18b1579..8727fc3 100644 --- a/selfprivacy-module.nix +++ b/selfprivacy-module.nix @@ -203,7 +203,7 @@ with lib; }; systemdTargets = mkOption { - type = with types; listOf strMatchig "[a-zA-Z0-9@%:_.\-]+[.](service|socket|device|mount|automount|swap|target|path|timer|scope|slice)"; + type = with types; listOf (strMatchig "[a-zA-Z0-9@%:_.\-]+[.](service|socket|device|mount|automount|swap|target|path|timer|scope|slice)"); default = []; example = [ "generate-mastodon-email-password.service" ]; description = "Systemd target which generates password file.";