msmtp: add configurable package

This commit is contained in:
Brian Leung 2023-12-12 14:40:52 -08:00 committed by GitHub
parent b3c4e98aec
commit 01a66e313f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 1 deletions

View File

@ -51,6 +51,13 @@ in {
programs.msmtp = {
enable = mkEnableOption "msmtp";
package = mkOption {
type = types.package;
default = pkgs.msmtp;
defaultText = literalExpression "pkgs.msmtp";
description = "The msmtp package to use.";
};
extraConfig = mkOption {
type = types.lines;
default = "";
@ -81,7 +88,7 @@ in {
};
config = mkIf cfg.enable {
home.packages = [ pkgs.msmtp ];
home.packages = [ cfg.package ];
xdg.configFile."msmtp/config".text = configFile msmtpAccounts;