1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-11-27 05:29:46 +01:00

msmtp: use XDG config directory

This commit is contained in:
Olli Helenius 2019-02-10 18:53:33 +02:00 committed by Robert Helgesson
parent a334a941c4
commit a3462daeb1
No known key found for this signature in database
GPG key ID: 36BDAA14C2797E89

View file

@ -66,7 +66,7 @@ in
config = mkIf cfg.enable { config = mkIf cfg.enable {
home.packages = [ pkgs.msmtp ]; home.packages = [ pkgs.msmtp ];
home.file.".msmtprc".text = configFile msmtpAccounts; xdg.configFile."msmtp/config".text = configFile msmtpAccounts;
home.sessionVariables = { home.sessionVariables = {
MSMTP_QUEUE = "${config.xdg.dataHome}/msmtp/queue"; MSMTP_QUEUE = "${config.xdg.dataHome}/msmtp/queue";