nixos-config/2configs/mail-client.nix

18 lines
217 B
Nix
Raw Normal View History

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