Files
sp-config/sp-modules/roundcube/flake.nix

37 lines
1022 B
Nix
Raw Normal View History

{
description = "Roundcube is a web-based email client.";
outputs = { self }: {
nixosModules.default = import ./module.nix;
configPathsNeeded =
builtins.fromJSON (builtins.readFile ./config-paths-needed.json);
2024-12-18 15:40:15 +03:00
meta = { lib, ... }: {
spModuleSchemaVersion = 1;
2024-12-18 15:40:15 +03:00
id = "roundcube";
name = "Roundcube";
description = "Roundcube is an open source webmail software.";
svgIcon = builtins.readFile ./icon.svg;
isMovable = false;
isRequired = false;
2024-12-24 15:47:14 +03:00
canBeBackedUp = true;
backupDescription = "Users' settings.";
postgreDatabases = [
"roundcube"
];
2024-12-18 15:40:15 +03:00
systemdServices = [
"phpfpm-roundcube.service"
];
license = [
lib.licenses.gpl3
];
homepage = "https://roundcube.net/";
sourcePage = "https://github.com/roundcube/roundcubemail";
supportLevel = "normal";
2025-03-28 17:21:08 +03:00
sso = {
accessGroup = "sp.roundcube.users";
adminGroup = "sp.roundcube.admins";
};
2024-12-18 15:40:15 +03:00
};
};
}