diff --git a/modules/nixos/services/kanboard/default.nix b/modules/nixos/services/kanboard/default.nix index 5a194a2..e82dc03 100755 --- a/modules/nixos/services/kanboard/default.nix +++ b/modules/nixos/services/kanboard/default.nix @@ -28,7 +28,7 @@ in MAIL_SMTP_PORT = smtp.ports.port0; MAIL_SMTP_USERNAME = service.email.address0; MAIL_SMTP_PASSWORD = config.sops.secrets."${service.name}-smtp".path; - MAIL_SMTP_ENCRYPTION = "null"; + MAIL_SMTP_ENCRYPTION = "ssl"; }; }; caddy = { @@ -64,19 +64,19 @@ in ); }; - fileSystems."/var/lib/${service.name}" = { - device = service.paths.path0; - fsType = "none"; - options = [ - "bind" - ]; - depends = [ - ceres.storage0.mount - ]; - }; + # fileSystems."/var/lib/${service.name}" = { + # device = service.paths.path0; + # fsType = "none"; + # options = [ + # "bind" + # ]; + # depends = [ + # ceres.storage0.mount + # ]; + # }; systemd.tmpfiles.rules = [ - "Z ${service.paths.path0} 755 ${service.name} ${service.name} -" + # "Z ${service.paths.path0} 755 ${service.name} ${service.name} -" "Z ${service.sops.path0} 755 ${service.name} ${service.name} -" ];