filetypes: adjusting associations added
parent
ff98b2da60
commit
3e1199a700
|
@ -9,6 +9,18 @@ in {
|
||||||
xdg.mimeApps =
|
xdg.mimeApps =
|
||||||
let
|
let
|
||||||
browser = "firefox.desktop";
|
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 =
|
mimeAppsFor =
|
||||||
value: list:
|
value: list:
|
||||||
|
@ -18,24 +30,15 @@ in {
|
||||||
{
|
{
|
||||||
enable = true;
|
enable = true;
|
||||||
defaultApplications = lib.mkMerge [
|
defaultApplications = lib.mkMerge [
|
||||||
(mimeAppsFor browser [
|
(mimeAppsFor browser 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/about"
|
|
||||||
"x-scheme-handler/http"
|
|
||||||
"x-scheme-handler/https"
|
|
||||||
])
|
|
||||||
|
|
||||||
(mimeAppsFor "brave-browser.desktop" [
|
(mimeAppsFor "brave-browser.desktop" [
|
||||||
"x-scheme-handler/chrome"
|
"x-scheme-handler/chrome"
|
||||||
])
|
])
|
||||||
];
|
];
|
||||||
|
associations.added = lib.mkMerge [
|
||||||
|
(mimeAppsFor browser browserApps)
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
home.sessionVariables = {
|
home.sessionVariables = {
|
||||||
|
|
Loading…
Reference in New Issue