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,20 @@
{
config,
lib,
...
}:
let
feature = "aerc";
in
{
config = lib.mkIf config.${feature}.enable {
programs.aerc = {
enable = true;
extraConfig.general.unsafe-accounts-conf = true;
};
};
imports = [ ];
options.${feature}.enable = lib.mkEnableOption "enables ${feature}";
}