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

20 lines
221 B
Nix
Raw Normal View History

{
...
}:
{
programs.firefox = {
enable = true;
enableAdobeFlash = false;
enableGoogleTalk = true;
enableIcedTea = true;
};
programs.browserpass = {
browsers = [
"firefox"
];
};
}