fix: open html emails in browser

This commit is contained in:
Noah Masur 2024-06-23 11:42:43 -04:00
parent cc69cbaa6c
commit 332921edd3
No known key found for this signature in database
2 changed files with 11 additions and 3 deletions

View File

@ -159,11 +159,15 @@
xdg.mimeApps = {
associations.added = {
"text.html" = [ "firefox.desktop" ];
"text/html" = [ "firefox.desktop" ];
};
defaultApplications = {
"text.html" = [ "firefox.desktop" ];
"text/html" = [ "firefox.desktop" ];
};
associations.removed = {
"text/html" = [ "wine-extension-htm.desktop" ];
};
};
xsession.windowManager.i3.config.keybindings = lib.mkIf pkgs.stdenv.isLinux {

View File

@ -158,7 +158,11 @@
};
};
extraConfig = {
general.unsafe-accounts-conf = true;
general = {
unsafe-accounts-conf = true;
# log-file = "~/.cache/aerc.log";
# log-level = "debug";
};
viewer = {
pager = "${pkgs.less}/bin/less -R";
};