nixos-config/modules/home/browsers/default.nix

11 lines
284 B
Nix

{...}: {
imports = [(import ./librewolf.nix)];
xdg.mimeApps.defaultApplications = {
"text/html" = ["librewolf.desktop"];
"text/xml" = ["librewolf.desktop"];
"x-scheme-handler/http" = ["librewolf.desktop"];
"x-scheme-handler/https" = ["librewolf.desktop"];
};
}