From dfcfbed3ee75ebe69b511f2d13dd8ec11b2fe3ee Mon Sep 17 00:00:00 2001 From: muon Date: Fri, 23 Aug 2024 12:46:20 +0000 Subject: [PATCH] Add qutebrowser --- modules/home/desktop/productivity.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/modules/home/desktop/productivity.nix b/modules/home/desktop/productivity.nix index ee4e598..5826c05 100644 --- a/modules/home/desktop/productivity.nix +++ b/modules/home/desktop/productivity.nix @@ -15,7 +15,6 @@ chromium ]; - home.sessionVariables.BROWSER = "librewolf"; programs.zsh.sessionVariables.BROWSER = "librewolf"; @@ -29,5 +28,14 @@ "network.cookie.lifetimePolicy" = 0; }; }; + + programs.qutebrowser = { + enable = true; + searchEngines = { + DEFAULT = "https://searx.be/?s={}"; + np = "https://search.nixos.org/packages?query={}"; + no = "https://search.nixos.org/options?query={}"; + }; + }; }; }