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_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} -"
];