27 lines
523 B
Nix
27 lines
523 B
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
vars,
|
|
...
|
|
}: {
|
|
imports = [inputs.arkenfox.hmModules.default];
|
|
programs.firefox = {
|
|
enable = true;
|
|
arkenfox = {
|
|
enable = true;
|
|
version = "119.0";
|
|
};
|
|
|
|
profiles.Default.arkenfox = {
|
|
enable = true;
|
|
"0000".enable = true;
|
|
};
|
|
};
|
|
|
|
xdg.mimeApps.defaultApplications = {
|
|
"text/html" = ["firefox.desktop"];
|
|
"text/xml" = ["firefox.desktop"];
|
|
"x-scheme-handler/http" = ["firefox.desktop"];
|
|
"x-scheme-handler/https" = ["firefox.desktop"];
|
|
};
|
|
}
|