infra/nix/home-manager/programs/firefox.nix

21 lines
348 B
Nix

{ pkgs
, ...
}:
{
programs.firefox = {
enable = true;
enableAdobeFlash = false;
enableGoogleTalk = true;
enableIcedTea = true;
};
programs.browserpass = {
browsers = [
"firefox"
];
};
home.file.".mozilla/native-messaging-hosts/passff.json".source = "${pkgs.passff-host}/share/passff-host/passff.json";
}