From d72d42bd990512883eb22c3804db7693fc1404cc Mon Sep 17 00:00:00 2001 From: Craige McWhirter Date: Fri, 22 Nov 2019 16:25:07 +1000 Subject: [PATCH] Added my neomutt confiugration --- roles/neomutt.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 roles/neomutt.nix diff --git a/roles/neomutt.nix b/roles/neomutt.nix new file mode 100644 index 0000000..9634123 --- /dev/null +++ b/roles/neomutt.nix @@ -0,0 +1,19 @@ +# 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 + ]; + +}