feat(email): enable mbsync and configure neomutt with sidebar and notmuch support
Some checks failed
Flake checker / Build Nix targets (push) Has been cancelled
Some checks failed
Flake checker / Build Nix targets (push) Has been cancelled
This commit is contained in:
@@ -21,10 +21,13 @@
|
||||
./himalaya.nix
|
||||
./mpd.nix
|
||||
./ncpamixer.nix
|
||||
./neomutt.nix
|
||||
./neovim.nix
|
||||
./nh.nix
|
||||
./nix-index.nix
|
||||
./nushell.nix
|
||||
./omnix.nix
|
||||
./opencode.nix
|
||||
./retroarch.nix
|
||||
./rustup.nix
|
||||
./ryujinx.nix
|
||||
@@ -41,8 +44,6 @@
|
||||
./yazi.nix
|
||||
./yt-dlp.nix
|
||||
./zoxide.nix
|
||||
./neovim.nix
|
||||
./opencode.nix
|
||||
|
||||
# ./goread.nix
|
||||
# ./helix.nix
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
{device, ...}: {
|
||||
{config, ...}: {
|
||||
programs.himalaya = {
|
||||
enable = true;
|
||||
};
|
||||
accounts.email.accounts.fastmail.himalaya = {
|
||||
enable = true;
|
||||
settings = {
|
||||
downloads-dir = "${device.home}/Mail";
|
||||
downloads-dir = "${config.home.homeDirectory}/Mail/fastmail";
|
||||
backend.type = "maildir";
|
||||
backend.root-dir = "~/Mail";
|
||||
backend.root-dir = "${config.home.homeDirectory}/Mail/fastmail";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
@@ -1,9 +1,20 @@
|
||||
{pkgs, ...}: {
|
||||
programs.neomutt = {
|
||||
enable = false;
|
||||
enable = true;
|
||||
vimKeys = true;
|
||||
editor = "nvim";
|
||||
# sidebar = {
|
||||
# };
|
||||
sidebar = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
programs.notmuch = {
|
||||
enable = true;
|
||||
};
|
||||
accounts.email.accounts.fastmail.neomutt = {
|
||||
enable = true;
|
||||
};
|
||||
accounts.email.accounts.fastmail.notmuch = {
|
||||
enable = true;
|
||||
neomutt.enable = true;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user