aerc: add package option (#4065)
This commit is contained in:
parent
39c7d0a97a
commit
cc6745b35f
|
@ -25,6 +25,8 @@ in {
|
||||||
|
|
||||||
enable = mkEnableOption "aerc";
|
enable = mkEnableOption "aerc";
|
||||||
|
|
||||||
|
package = mkPackageOption pkgs "aerc" { };
|
||||||
|
|
||||||
extraAccounts = mkOption {
|
extraAccounts = mkOption {
|
||||||
type = sectionsOrLines;
|
type = sectionsOrLines;
|
||||||
default = { };
|
default = { };
|
||||||
|
@ -133,7 +135,7 @@ in {
|
||||||
Consider setting the option `extraConfig.general.unsafe-accounts-conf` to true.
|
Consider setting the option `extraConfig.general.unsafe-accounts-conf` to true.
|
||||||
''] else
|
''] else
|
||||||
[ ];
|
[ ];
|
||||||
home.packages = [ pkgs.aerc ];
|
home.packages = [ cfg.package ];
|
||||||
xdg.configFile = {
|
xdg.configFile = {
|
||||||
"aerc/accounts.conf" = mkIf
|
"aerc/accounts.conf" = mkIf
|
||||||
((cfg.extraAccounts != "" && cfg.extraAccounts != { })
|
((cfg.extraAccounts != "" && cfg.extraAccounts != { })
|
||||||
|
|
Loading…
Reference in a new issue