nix-config/modules/mail.nix

7 lines
113 B
Nix

{ pkgs, ... }: {
environment.systemPackages = with pkgs; [
neomutt
];
programs.msmtp.enable = true;
}