feat: kanboard test

This commit is contained in:
Nick 2025-06-10 16:57:51 -05:00
parent 3fad9b2f7a
commit bc614fa8e5

View file

@ -28,7 +28,7 @@ in
MAIL_SMTP_PORT = smtp.ports.port0; MAIL_SMTP_PORT = smtp.ports.port0;
MAIL_SMTP_USERNAME = service.email.address0; MAIL_SMTP_USERNAME = service.email.address0;
MAIL_SMTP_PASSWORD = config.sops.secrets."${service.name}-smtp".path; MAIL_SMTP_PASSWORD = config.sops.secrets."${service.name}-smtp".path;
MAIL_SMTP_ENCRYPTION = "null"; MAIL_SMTP_ENCRYPTION = "ssl";
}; };
}; };
caddy = { caddy = {
@ -64,19 +64,19 @@ in
); );
}; };
fileSystems."/var/lib/${service.name}" = { # fileSystems."/var/lib/${service.name}" = {
device = service.paths.path0; # device = service.paths.path0;
fsType = "none"; # fsType = "none";
options = [ # options = [
"bind" # "bind"
]; # ];
depends = [ # depends = [
ceres.storage0.mount # ceres.storage0.mount
]; # ];
}; # };
systemd.tmpfiles.rules = [ 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} -" "Z ${service.sops.path0} 755 ${service.name} ${service.name} -"
]; ];