26 lines
575 B
Nix
26 lines
575 B
Nix
{
|
|
den.aspects.librewolf = {
|
|
homeManager = {
|
|
programs.librewolf = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
"browser.startup.homepage" = "https://search.bug.tools";
|
|
};
|
|
|
|
# set default search engine to search.bug.tools (searxng)
|
|
|
|
|
|
# and add stylus, tampermonkey, sponsorblock, dearrow, cookie quick manager
|
|
|
|
|
|
policies = {
|
|
BlockAboutConfig = true;
|
|
};
|
|
|
|
# https://github.com/nix-community/nur-combined/blob/main/repos/rycee/pkgs/firefox-addons/generated-firefox-addons.nix
|
|
};
|
|
};
|
|
};
|
|
}
|