fix: All machine have they own hardware

This commit is contained in:
Wateir 2025-12-22 02:12:52 +01:00
parent 1637885001
commit 4070c37cc5
17 changed files with 286 additions and 103 deletions

View file

@ -1,22 +1,42 @@
{ config, pkgs, lib, ... }:
lib.mkIf config.sROUNDCUBE.enable {
lib.mkIf config.module.roundcube.enable {
age.secrets = {
smtp_server = {
file = ../secrets/smtp_server.age;
owner = "roundcube";
group = "roundcube";
mode = "0400";
};
imap_server = {
file = ../secrets/imap_server.age;
owner = "roundcube";
group = "roundcube";
mode = "0400";
};
};
services.roundcube = {
enable = true;
hostName = "${config.HostName}";
hostName = "mail.${config.module.domain}";
plugins = [ "multiple_accounts" ];
configureNginx = false;
extraConfig = ''
# PurelyMail configuration
$config['default_host'] = 'ssl://imap.purelymail.com';
$config['default_host'] = trim(
file_get_contents('${config.age.secrets.imap_server.path}')
);
$config['default_port'] = 993;
$config['smtp_server'] = 'tls://smtp.purelymail.com';
$config['smtp_server'] = trim(
file_get_contents('${config.age.secrets.smtp_server.path}')
);
$config['smtp_port'] = 465;
$config['smtp_user'] = '%u';
$config['smtp_pass'] = '%p';
'';
};
systemd.services.nginx.serviceConfig.ProtectHome = false;