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

15 lines
269 B
Nix
Raw Normal View History

2022-10-31 11:04:38 +01:00
{ pkgs, ... }:
{
2022-10-31 11:04:38 +01:00
programs.firefox = { enable = true; };
programs.browserpass = {
enable = true;
2022-10-31 11:04:38 +01:00
browsers = [ "firefox" ];
};
2022-10-31 11:04:38 +01:00
home.file.".mozilla/native-messaging-hosts/passff.json".source =
"${pkgs.passff-host}/share/passff-host/passff.json";
}