nix-config/modules/mail.nix

13 lines
162 B
Nix
Raw Normal View History

2022-06-17 13:12:25 +02:00
{ pkgs, ... }: {
environment.systemPackages = with pkgs; [
2022-07-14 22:47:45 +02:00
isync
msmtp
2022-06-17 13:12:25 +02:00
neomutt
2022-07-14 22:47:45 +02:00
notmuch
pass
w3m
2022-06-17 13:12:25 +02:00
];
programs.msmtp.enable = true;
}