Added qutebrowser with initial config.
This commit is contained in:
parent
d91cd33c82
commit
f960fcc43a
12
snippets/qutebrowser.nix
Normal file
12
snippets/qutebrowser.nix
Normal file
|
|
@ -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={}"}
|
||||
'';
|
||||
};
|
||||
}
|
||||
Loading…
Reference in a new issue