format + tree-sitter

This commit is contained in:
2026-04-15 11:28:48 +02:00
parent 6ee0af88cd
commit d191299966
10 changed files with 107 additions and 72 deletions
+15 -8
View File
@@ -60,14 +60,21 @@ lib.mkIf hasMailDiscoveryConfig (
wantedBy = [ "multi-user.target" ];
serviceConfig = {
DynamicUser = true;
ExecStart = lib.concatStringsSep " " [
"${pkgs.python3}/bin/python3"
"${generatorScript}"
"--domain" domain
"--mail-host" cfg.fqdn
"--radicale-host" radicaleHost
"--port" (toString mobileconfigPort)
] + defaultUsernameArg + accountArgs;
ExecStart =
lib.concatStringsSep " " [
"${pkgs.python3}/bin/python3"
"${generatorScript}"
"--domain"
domain
"--mail-host"
cfg.fqdn
"--radicale-host"
radicaleHost
"--port"
(toString mobileconfigPort)
]
+ defaultUsernameArg
+ accountArgs;
NoNewPrivileges = true;
PrivateTmp = true;
ProtectHome = true;