This commit is contained in:
Ivan Dimitrov 2023-10-04 07:25:42 +03:00
parent 6a65d688c1
commit 0b668a5a79
2 changed files with 7 additions and 1 deletions

View File

@ -1,5 +1,5 @@
{ pkgs, ... }: {
imports = [ ./neovim ./sway ./tmux.nix ./zsh.nix ./lf ];
imports = [ ./neovim ./neomutt ./sway ./tmux.nix ./zsh.nix ./lf ];
programs = {
thunderbird = {

View File

@ -0,0 +1,6 @@
{ pkgs, lib, ... }: {
programs.neomutt = {
enable = true;
vimKeys = true;
};
}