server-configs/machines/gerd/services/stalwart/default.nix

21 lines
442 B
Nix
Raw Permalink Normal View History

2024-08-22 11:54:04 +00:00
{ config, ... }:
{
imports = [
./stalwart.nix
];
2024-08-22 11:54:04 +00:00
mine.shared.meta.stalwart = {
name = "Stalwart Mail";
description = "We host our own mailserver, which can be reached on ${config.mine.shared.settings.mail.domain} with your LDAP username and password.";
package = let
pkg = config.services.stalwart-mail.package;
in {
name = pkg.pname;
version = pkg.version;
meta = pkg.meta;
};
};
}