This commit is contained in:
cy 2025-02-09 14:40:12 -05:00
parent 5e877bd3d0
commit ee2baa3f19
Signed by: cy
SSH key fingerprint: SHA256:o/geVWV4om1QhUSkKvDQeW/eAihwnjyXkqMwrVdbuts
5 changed files with 31 additions and 18 deletions

View file

@ -1,4 +1,9 @@
{ config, lib, pkgs, ... }:
{
config,
lib,
pkgs,
...
}:
let
cfg = config.my.roundcube;
fpm = config.services.phpfpm.pools.roundcube;
@ -13,12 +18,14 @@ in
services.roundcube = {
enable = true;
configureNginx = false;
package = pkgs.roundcube.withPlugins (p: with p; [
persistent_login
contextmenu
custom_from
thunderbird_labels
]);
package = pkgs.roundcube.withPlugins (
p: with p; [
persistent_login
contextmenu
custom_from
thunderbird_labels
]
);
plugins = [
"persistent_login"
"contextmenu"