28 lines
875 B
Nix
28 lines
875 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
stylix.targets.qutebrowser.enable = true;
|
|
programs.qutebrowser = {
|
|
enable = true;
|
|
package = pkgs.qutebrowser-qt5; # Qt6 currently looks blurry with scaling on Wayland
|
|
loadAutoconfig = false;
|
|
enableDefaultBindings = true; # For now...
|
|
searchEngines = rec {
|
|
w = "https://en.wikipedia.org/wiki/Special:Search?search={}&go=Go&ns0=1";
|
|
aw = "https://wiki.archlinux.org/?search={}";
|
|
nw = "https://nixos.wiki/index.php?search={}";
|
|
mn = "https://mynixos.com/search?q={}";
|
|
ddg = "https://duckduckgo.com/?q={}";
|
|
a = "https://search.atlas.engineer/searxng/search?q={}";
|
|
DEFAULT = a;
|
|
};
|
|
settings = {
|
|
tabs.tabs_are_windows = true;
|
|
fonts.web.size.default = lib.mkForce config.stylix.fonts.sizes.applications; # Temp fix until stylix is updated
|
|
};
|
|
};
|
|
}
|