filetypes: adjusting associations added
parent
ff98b2da60
commit
3e1199a700
|
@ -9,6 +9,18 @@ in {
|
|||
xdg.mimeApps =
|
||||
let
|
||||
browser = "firefox.desktop";
|
||||
browserApps = [
|
||||
"application/pdf"
|
||||
"application/x-extension-htm"
|
||||
"application/x-extension-html"
|
||||
"application/x-extension-shtml"
|
||||
"application/x-extension-xht"
|
||||
"application/x-extension-xhtml"
|
||||
"application/xhtml+xml"
|
||||
"text/html"
|
||||
"x-scheme-handler/http"
|
||||
"x-scheme-handler/https"
|
||||
];
|
||||
|
||||
mimeAppsFor =
|
||||
value: list:
|
||||
|
@ -18,24 +30,15 @@ in {
|
|||
{
|
||||
enable = true;
|
||||
defaultApplications = lib.mkMerge [
|
||||
(mimeAppsFor browser [
|
||||
"application/pdf"
|
||||
"application/x-extension-htm"
|
||||
"application/x-extension-html"
|
||||
"application/x-extension-shtml"
|
||||
"application/x-extension-xht"
|
||||
"application/x-extension-xhtml"
|
||||
"application/xhtml+xml"
|
||||
"text/html"
|
||||
"x-scheme-handler/about"
|
||||
"x-scheme-handler/http"
|
||||
"x-scheme-handler/https"
|
||||
])
|
||||
(mimeAppsFor browser browserApps)
|
||||
|
||||
(mimeAppsFor "brave-browser.desktop" [
|
||||
"x-scheme-handler/chrome"
|
||||
])
|
||||
];
|
||||
associations.added = lib.mkMerge [
|
||||
(mimeAppsFor browser browserApps)
|
||||
];
|
||||
};
|
||||
|
||||
home.sessionVariables = {
|
||||
|
|
Loading…
Reference in New Issue