flake/home/applications/firefox/default.nix

19 lines
454 B
Nix
Raw Normal View History

2024-02-14 04:36:41 +08: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-10 03:36:50 +08:00
home.sessionVariables = {
MOZ_USE_XINPUT2 = "1";
};
2023-11-05 20:50:08 +08:00
}