1
1
Fork 1
mirror of https://github.com/oddlama/nix-config.git synced 2025-10-10 23:00:39 +02:00

feat: add mime defaults to firefox

This commit is contained in:
oddlama 2023-09-05 15:03:24 +02:00
parent e8a12ff409
commit 792c23802c
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A

View file

@ -8,4 +8,15 @@
# To allow vaapi access for hardware acceleration
MOZ_DISABLE_RDD_SANDBOX = 1;
};
home.persistence."/state".directories = [
"Downloads"
];
xdg.mimeApps.defaultApplications = {
"text/html" = ["firefox.desktop"];
"text/xml" = ["firefox.desktop"];
"x-scheme-handler/http" = ["firefox.desktop"];
"x-scheme-handler/https" = ["firefox.desktop"];
};
}