16 lines
239 B
Nix
16 lines
239 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
notcoal = pkgs.callPackage ../packages/notcoal { };
|
|
in {
|
|
environment.systemPackages = with pkgs; [
|
|
isync
|
|
khal
|
|
msmtp
|
|
notmuch
|
|
notcoal
|
|
thunderbird
|
|
astroid
|
|
vdirsyncer
|
|
];
|
|
}
|