11 lines
284 B
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"];
|
|
};
|
|
}
|