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;
}
}
}
}

View file

@ -20,6 +20,7 @@
./git.nix ./git.nix
./stylix.nix ./stylix.nix
./direnv.nix ./direnv.nix
./firefox.nix
]; ];
# States home manager version that config was originally compatible with, do not change without reading all patch notes since this version and altering as needed # States home manager version that config was originally compatible with, do not change without reading all patch notes since this version and altering as needed

View file

@ -178,9 +178,6 @@
}; };
services.blueman.enable = true; services.blueman.enable = true;
# Install firefox.
programs.firefox.enable = true;
# Enable flatpak for nix-flatpak used in home-manager # Enable flatpak for nix-flatpak used in home-manager
services.flatpak.enable = true; services.flatpak.enable = true;