15 lines
216 B
Nix
15 lines
216 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
{
|
|
krebs.exim-retiolum.enable = true;
|
|
environment.systemPackages = with pkgs; [
|
|
msmtp
|
|
mutt-kz
|
|
notmuch
|
|
# TODO: put this somewhere else
|
|
offlineimap
|
|
];
|
|
|
|
}
|