mirror of
https://codeberg.org/muon/home.git
synced 2025-12-06 16:17:46 +00:00
43 lines
1.7 KiB
Nix
43 lines
1.7 KiB
Nix
{ pkgs, lib, config, ... }: {
|
|
options.mods.desktop.development.enable =
|
|
lib.mkEnableOption "enables gui development tools";
|
|
|
|
config = lib.mkIf config.mods.desktop.development.enable {
|
|
# home.packages = with pkgs; [];
|
|
programs.qutebrowser = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
content.cookies.accept = "no-3rdparty";
|
|
url = {
|
|
default_page = "https://online.bonjourr.fr/";
|
|
start_pages = "https://online.bonjourr.fr/";
|
|
};
|
|
};
|
|
|
|
searchEngines = {
|
|
DEFAULT = "https://northboot.xyz/?q={}";
|
|
np = "https://search.nixos.org/packages?query={}";
|
|
no = "https://search.nixos.org/options?query={}";
|
|
};
|
|
|
|
extraConfig = ''
|
|
host = c.content.blocking.hosts.lists.append
|
|
host("https://www.github.developerdan.com/hosts/lists/facebook-extended.txt")
|
|
|
|
abp = c.content.blocking.adblock.lists.append
|
|
abp("https://fanboy.co.nz/r/fanboy-ultimate.txt")
|
|
abp("https://fanboy.co.nz/fanboy-antifacebook.txt")
|
|
abp("https://fanboy.co.nz/fanboy-annoyance.txt")
|
|
abp("https://fanboy.co.nz/fanboy-cookiemonster.txt")
|
|
abp("https://easylist-downloads.adblockplus.org/antiadblockfilters.txt")
|
|
abp("https://easylist-downloads.adblockplus.org/abp-filters-anti-cv.txt")
|
|
|
|
abp("https://github.com/DandelionSprout/adfilt/raw/master/LegitimateURLShortener.txt")
|
|
abp("https://github.com/DandelionSprout/adfilt/raw/master/AnnoyancesList")
|
|
abp("https://github.com/DandelionSprout/adfilt/raw/master/SocialShareList.txt")
|
|
abp("https://github.com/DandelionSprout/adfilt/raw/master/ExtremelyCondensedList.txt")
|
|
'';
|
|
};
|
|
};
|
|
}
|