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

19 lines
293 B
Nix

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