feat: install proton bridge and aerc for email

This commit is contained in:
wi11-holdsworth 2025-09-25 18:23:31 +10:00
parent 1562d5c30b
commit eeae2e69f3
5 changed files with 110 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{
config,
lib,
...
}:
let
feature = "protonmail-bridge";
in
{
config = lib.mkIf config.${feature}.enable {
services.protonmail-bridge.enable = true;
};
imports = [ ];
options.${feature}.enable = lib.mkEnableOption "enables ${feature}";
}