nix/roles/mail.nix
2022-02-26 02:13:40 +01:00

17 lines
317 B
Nix

{ config, lib, pkgs, ... }:
let
unstable = import <nixos-unstable> { config.allowUnfree = true; };
notcoal = pkgs.callPackage ../packages/notcoal { };
in {
environment.systemPackages = with pkgs; [
isync
khal
msmtp
notmuch
notcoal
thunderbird
unstable.astroid
vdirsyncer
];
}