stockholm/makefu/2configs/mail-client.nix

18 lines
217 B
Nix
Raw Normal View History

2015-10-20 12:25:49 +00:00
{ config, lib, pkgs, ... }:
2016-10-20 18:54:38 +00:00
with import <stockholm/lib>;
2015-10-20 12:25:49 +00:00
{
environment.systemPackages = with pkgs; [
2016-02-22 13:28:05 +00:00
abook
2016-02-26 22:39:52 +00:00
gnupg
imapfilter
2015-10-20 12:25:49 +00:00
msmtp
notmuch
2017-06-06 12:42:58 +00:00
neomutt
2015-10-20 12:25:49 +00:00
offlineimap
2016-02-26 22:39:52 +00:00
openssl
w3m
2015-10-20 12:25:49 +00:00
];
2017-06-06 12:42:58 +00:00
2015-10-20 12:25:49 +00:00
}