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