diff options
author | sefidel <contact@sefidel.net> | 2023-09-16 23:52:25 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2023-09-16 23:52:25 +0900 |
commit | 86f831d6f6deb3c812504a724997ed3e2990ac8f (patch) | |
tree | be4e9de67f2a7af66e6c37f64e708c5e73570156 | |
parent | 559f73fad74c0ac2e50f68b751e9390b40fe622f (diff) | |
download | nixrc-86f831d6f6deb3c812504a724997ed3e2990ac8f.tar.gz nixrc-86f831d6f6deb3c812504a724997ed3e2990ac8f.zip |
feat(home/browsing): qutebrowser: open links in new window
-rw-r--r-- | home/profiles/browsing/default.nix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/home/profiles/browsing/default.nix b/home/profiles/browsing/default.nix index 42e85f0..1fd5e8f 100644 --- a/home/profiles/browsing/default.nix +++ b/home/profiles/browsing/default.nix @@ -44,6 +44,9 @@ in settings = import ./qutebrowser-settings.nix // { url.default_page = "https://searx.be"; url.start_pages = "https://searx.be"; + + # mimeApps: open links in new window + new_instance_open_target = "window"; } // lib.optionalAttrs (cfg.hiDpi) { qt.highdpi = true; fonts.default_size = "12pt"; |