10 lines
290 B
Nix
10 lines
290 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" ];
|
|
};
|
|
}
|