flake/home/applications/firefox/default.nix

19 lines
454 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 {
url = "https://raw.githubusercontent.com/arkenfox/user.js/122.0/user.js";
hash = "sha256-H3Nk5sDxSElGRgK+cyQpVyjtlMF2Okxbstu9A+eJtGk=";
})}
${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
}