dot_testing/home/firefox/default.nix

16 lines
227 B
Nix
Raw Normal View History

2023-12-21 17:22:54 -06:00
{ lib, inputs, config, pkgs, home, ... }:
2023-12-21 15:26:09 -06:00
{
2023-12-21 16:06:12 -06:00
programs.firefox = {
2023-12-21 15:26:09 -06:00
enable = true;
2023-12-21 16:06:12 -06:00
profiles = {
"main" = {
2023-12-21 17:22:54 -06:00
extensions = with inputs.firefox-addons; [
2023-12-21 16:06:12 -06:00
bitwarden
];
};
2023-12-21 15:26:09 -06:00
};
};
}