16 lines
538 B
Nix
16 lines
538 B
Nix
{ config, pkgs, ... }: {
|
|
programs.firefox = {
|
|
enable = true;
|
|
package = pkgs.librewolf;
|
|
profiles.blue = {
|
|
extensions = {
|
|
with pkgs.nur.repos.rycee.firefox-addons; [
|
|
|
|
]
|
|
}
|
|
settings = {
|
|
"extensions.autoDisableScopes" = 0;
|
|
}
|
|
}
|
|
}
|
|
}
|