flake/home/applications/firefox/default.nix

20 lines
477 B
Nix
Raw Normal View History

2024-02-13 20:36:41 +00:00
{pkgs, ...}: {
programs.firefox = {
enable = true;
profiles."default" = {
extraConfig = ''
${builtins.readFile (pkgs.fetchurl {
2024-06-18 00:59:05 +00:00
# FIXME: IFD
2024-06-11 17:00:11 +00:00
url = "https://raw.githubusercontent.com/arkenfox/user.js/126.1/user.js";
hash = "sha256-XRtG0iLKh8uqbeX7Rc2H6VJwZYJoNZPBlAfZEfrSCP4=";
})}
${builtins.readFile ./user-overrides.js}
'';
};
};
2024-01-09 19:36:50 +00:00
home.sessionVariables = {
MOZ_USE_XINPUT2 = "1";
};
2023-11-05 12:50:08 +00:00
}