diff options
author | sefidel <contact@sefidel.net> | 2023-04-13 21:45:19 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2023-04-13 22:03:45 +0900 |
commit | 584a20dac0118cc8bafd987b3a6b567380b1f7c3 (patch) | |
tree | 4063d26f07b4d61c908a0016c0bbd124f72d40d5 /home/profiles/browsing | |
parent | ba1f44470539e82bca3f18d3095fe73938d96f69 (diff) | |
download | nixrc-584a20dac0118cc8bafd987b3a6b567380b1f7c3.tar.gz nixrc-584a20dac0118cc8bafd987b3a6b567380b1f7c3.zip |
feat(home/browsing): try kagi
Diffstat (limited to 'home/profiles/browsing')
-rw-r--r-- | home/profiles/browsing/default.nix | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/home/profiles/browsing/default.nix b/home/profiles/browsing/default.nix index d90625f..ab5470c 100644 --- a/home/profiles/browsing/default.nix +++ b/home/profiles/browsing/default.nix @@ -14,7 +14,7 @@ in enable = true; searchEngines = { - DEFAULT = "https://search.unlocked.link/search?q={}"; + DEFAULT = "https://kagi.com/search?q={}"; g = "https://www.google.com/search?hl=en&q={}"; ddg = "https://www.duckduckgo.com/?q={}"; nw = "https://nixos.wiki/index.php?search={}"; @@ -27,7 +27,11 @@ in sourcehut = "https://sr.ht"; }; - settings = import ./qutebrowser-settings.nix; + + settings = import ./qutebrowser-settings.nix // { + url.default_page = "https://kagi.com"; + url.start_pages = "https://kagi.com"; + }; }; }; } |