18 lines
217 B
Nix
18 lines
217 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with import <stockholm/lib>;
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
abook
|
|
gnupg
|
|
imapfilter
|
|
msmtp
|
|
notmuch
|
|
neomutt
|
|
offlineimap
|
|
openssl
|
|
w3m
|
|
];
|
|
|
|
}
|