mime associations: add aerc for email (but... it doesnt work from gui)

This commit is contained in:
2023-06-29 21:08:50 +00:00
parent 71971a050c
commit e22fb2f4f5

View File

@@ -1,6 +1,7 @@
{ config, sane-lib, ...}:
let
# TODO: should move all of this into `sane.programs` to not ship broken associations
www = config.sane.programs.web-browser.config.browser.desktop;
pdf = "org.gnome.Evince.desktop";
md = "obsidian.desktop";
@@ -8,6 +9,7 @@ let
video = "vlc.desktop";
# audio = "mpv.desktop";
audio = "vlc.desktop";
email = "aerc.desktop";
in
{
@@ -39,5 +41,6 @@ in
# RICH-TEXT DOCUMENTS
"application/pdf" = pdf;
"text/markdown" = md;
"x-scheme-handler/mailto" = email;
};
}