From f960fcc43a7aa7b67a2bd017f7477718230c7d86 Mon Sep 17 00:00:00 2001 From: vorboyvo Date: Thu, 27 Feb 2025 10:20:50 -0500 Subject: [PATCH] Added qutebrowser with initial config. --- snippets/qutebrowser.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 snippets/qutebrowser.nix diff --git a/snippets/qutebrowser.nix b/snippets/qutebrowser.nix new file mode 100644 index 0000000..fc04a53 --- /dev/null +++ b/snippets/qutebrowser.nix @@ -0,0 +1,12 @@ +{ pkgs, ... }: +{ + programs.qutebrowser = { + enable = true; + settings = { + tabs.tabs_are_windows = true; + }; + extraConfig = '' + c.url.searchengines={"DEFAULT": "https://duckduckgo.com/?q={}", "np": "https://search.nixos.org/packages?type=packages&query={}", "no": "https://search.nixos.org/options?type=options&query={}", "hm": "https://home-manager-options.extranix.com?query={}"} + ''; + }; +}