nix-config/modules/mail.nix

8 lines
113 B
Nix
Raw Normal View History

2022-06-17 13:12:25 +02:00
{ pkgs, ... }: {
environment.systemPackages = with pkgs; [
neomutt
];
programs.msmtp.enable = true;
}