add firefox config using pkgs.librewolf

This commit is contained in:
Gabriella Bere 2025-03-01 21:12:54 +00:00
parent 3101df896c
commit b437e0934a
3 changed files with 17 additions and 3 deletions

16
home-manager/firefox.nix Normal file
View file

@ -0,0 +1,16 @@
{ config, pkgs, ... }: {
programs.firefox = {
enable = true;
package = pkgs.librewolf;
profiles.blue = {
extensions = {
with pkgs.nur.repos.rycee.firefox-addons; [
]
}
settings = {
"extensions.autoDisableScopes" = 0;
}
}
}
}