dots/modules/home-manager/features/aerc.nix
2025-09-25 21:36:43 +10:00

20 lines
306 B
Nix

{
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}";
}