initial mail support

This commit is contained in:
foosinn 2020-08-31 18:10:04 +02:00
parent 5a23631170
commit 8c6e6f6f2e
2 changed files with 10 additions and 0 deletions

View file

@ -14,6 +14,7 @@
./roles/base.nix ./roles/base.nix
./roles/desktop.nix ./roles/desktop.nix
./roles/dev.nix ./roles/dev.nix
./roles/mail.nix
./roles/vpn.nix ./roles/vpn.nix
./roles/wireless.nix ./roles/wireless.nix
]; ];

9
roles/mail.nix Normal file
View file

@ -0,0 +1,9 @@
{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
astroid
isync
notmuch
];
}