projects/gui: Completely removed email

This commit is contained in:
kat witch 2021-04-28 04:26:01 +01:00
parent 60106e53af
commit cb835e1e87
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72
2 changed files with 0 additions and 13 deletions

View file

@ -5,7 +5,6 @@
./firefox
./kitty.nix
./packages.nix
./email.nix
./gpg.nix
./bitw.nix
./weechat.nix

View file

@ -1,12 +0,0 @@
{ config, lib, pkgs, ... }:
{
programs.notmuch = {
enable = true;
hooks = { preNew = "mbsync --all"; };
};
programs.mbsync.enable = true;
programs.msmtp.enable = true;
accounts.email = { maildirBasePath = "${config.home.homeDirectory}/mail"; };
programs.vim.plugins = [ pkgs.arc.pkgs.vimPlugins.notmuch-vim ];
}