Files
nextcloud_ecosystem/system-master/home/apps/defaults-apps.nix
T
2026-02-22 17:28:02 +01:00

10 lines
304 B
Nix

{ config, pkgs, lib, ... }:
{
xdg.mimeApps.enable = true;
xdg.mimeApps.defaultApplications = {
"x-scheme-handler/http" = [ "app.zen_browser.zen.desktop" ];
"x-scheme-handler/https" = [ "app.zen_browser.zen.desktop" ];
"text/html" = [ "app.zen_browser.zen.desktop" ];
};
}