mio-ops/roles/neomutt.nix

20 lines
621 B
Nix
Raw Normal View History

2019-11-22 06:25:07 +00:00
# Configuration for my neomutt email requirements
{ config, pkgs, ... }:
{
# Install other packages that I require to be used with neomutt.
environment.systemPackages = with pkgs; [
isync # My mail fetcher
khard # Console carddav client
lynx # My HTML email viewer
msmtp # My mail sender
neomutt # My MUA
notmuch # Search and indexing for neomutt
urlscan # Scanning for links neomutt
vdirsyncer # Synchronize calendars and contacts
];
}