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

40 lines
1.1 KiB
Nix
Raw Normal View History

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