Fixed mbsync not able to use cat

This commit is contained in:
Julien Malka 2022-01-03 13:43:01 +01:00
parent adb104946e
commit 29198ae459
No known key found for this signature in database
GPG key ID: 3C68E13964FEA07F
2 changed files with 5 additions and 5 deletions

View file

@ -29,7 +29,7 @@ with lib;
msmtp.enable = true;
primary = true;
realName = "Julien Malka";
passwordCommand = "cat /home/julien/.config/ens-mail-passwd";
passwordCommand = "${pkgs.coreutils}/bin/cat /home/julien/.config/ens-mail-passwd";
smtp = {
host = "clipper.ens.fr";
};
@ -38,8 +38,8 @@ with lib;
};
services.mbsync = {
enable = true;
frequency = "*-*-* *:*:00";
verbose = false;
frequency = "minutely";
verbose = true;
};
xdg.configFile = {
"neomutt/neomuttrc".source = lib.mkForce ./neomuttrc;