diff options
| author | EuAndreh <eu@euandre.org> | 2021-06-10 23:04:21 -0300 |
|---|---|---|
| committer | EuAndreh <eu@euandre.org> | 2021-06-10 23:04:21 -0300 |
| commit | 676479423b5c56e931fdb48839b796be3d35e910 (patch) | |
| tree | e1459dbda10fd4bc9b519fd55a997bfff7656c4c /configuration.nix | |
| parent | scripts/open: Do nothing when no argument is given (diff) | |
| download | dotfiles-676479423b5c56e931fdb48839b796be3d35e910.tar.gz dotfiles-676479423b5c56e931fdb48839b796be3d35e910.tar.xz | |
configuration.nix: Use queued version of msmtp as sendmail
Diffstat (limited to 'configuration.nix')
| -rw-r--r-- | configuration.nix | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/configuration.nix b/configuration.nix index f1dc019e..90b15fd9 100644 --- a/configuration.nix +++ b/configuration.nix @@ -338,12 +338,20 @@ in { msmtp = { enable = true; extraConfig = builtins.readFile /home/andreh/.config/msmtp/config; - setSendmail = true; + setSendmail = false; }; }; xdg.portal.enable = true; services = { + + mail.sendmailSetuidWrapper = { + program = "sendmail"; + source = "${pkgs.msmtp}/bin/msmtpq"; + setuid = false; + setgid = false; + }; + blueman.enable = true; # We can see the actual generated crontab at /etc/crontab |
