add firefox config using pkgs.librewolf
This commit is contained in:
parent
3101df896c
commit
b437e0934a
3 changed files with 17 additions and 3 deletions
16
home-manager/firefox.nix
Normal file
16
home-manager/firefox.nix
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -20,6 +20,7 @@
|
|||
./git.nix
|
||||
./stylix.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
|
||||
|
|
|
@ -178,9 +178,6 @@
|
|||
};
|
||||
services.blueman.enable = true;
|
||||
|
||||
# Install firefox.
|
||||
programs.firefox.enable = true;
|
||||
|
||||
# Enable flatpak for nix-flatpak used in home-manager
|
||||
services.flatpak.enable = true;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue