chore: fuck roundcube

This commit is contained in:
Nick 2025-10-22 02:33:13 -05:00
parent 3773d01b25
commit 1b98c4eff8
3 changed files with 16 additions and 114 deletions

View file

@ -1,43 +0,0 @@
{ moduleFunctions }:
let
inherit (moduleFunctions.instancesFunctions)
domain0
servicePath
sslPath
sopsPath
;
label = "Roundcube";
name = "roundcube";
subdomain = "mail";
domain = "${subdomain}.${domain0}";
in
{
label = label;
name = name;
short = "Round";
email = {
address0 = "noreply@${domain0}";
};
sops = {
path0 = "${sopsPath}/${name}";
};
domains = {
url0 = domain;
};
subdomain = subdomain;
tags = [
name
"email"
];
paths = {
path0 = "${servicePath}/${label}";
};
ports = {
port0 = 9999;
};
ssl = {
cert = "${sslPath}/${domain}/fullchain.pem";
key = "${sslPath}/${domain}/key.pem";
};
}