nixos-config/users/rouven/modules/qutebrowser/default.nix

40 lines
1.2 KiB
Nix
Raw Normal View History

2023-05-19 11:42:43 +02:00
{ ... }:
2023-02-03 11:43:09 +01:00
{
programs.qutebrowser = {
enable = true;
2023-02-03 11:43:09 +01:00
searchEngines = {
DEFAULT = "https://duckduckgo.com/?q={}";
aw = "https://wiki.archlinux.org/?search={}";
nw = "https://nixos.wiki/index.php?search={}";
wp = "https://en.wikipedia.org/wiki/Special:Search?search={}";
y = "http://localhost:8090/yacysearch.html?query={}";
yt = "https://www.youtube.com/results?search_query={}";
g = "https://www.google.com/search?hl=en&q={}";
};
quickmarks = {
nix-search = "https://search.nixos.org/options?";
home-search = "https://mipmip.github.io/home-manager-option-search/";
jexam = "https://jexam.inf.tu-dresden.de";
opal = "https://bildungsportal.sachsen.de/opal/home?2";
fruitbasket = "https://github.com/fsr/fruitbasket";
};
2023-02-08 16:16:12 +01:00
keyBindings = {
normal = {
"<Ctrl-m>" = "hint links spawn mpv {hint-url}";
};
};
2023-02-03 11:43:09 +01:00
settings = {
colors.webpage = {
darkmode.enabled = false;
preferred_color_scheme = "dark";
};
content.blocking = {
enabled = true;
method = "both";
};
2023-02-08 16:16:12 +01:00
statusbar.show = "in-mode";
tabs.show = "switching";
2023-02-03 11:43:09 +01:00
};
};
}