mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-24 03:09:38 +01:00
Add `programs.qutebrowser.perDomainSettings` which let's one to set
configuration options for specific URLs [1].
It option doesn't check if the options passed to it are valid, it
translates the config to python code to be written on the file as is.
Mimicking the behaviour of `programs.qutebrowser.settings`.
Added a new test case `test-qutebrowser-url-settings` for testing the
implementation.
[1]: bb7bbb6ead/doc/help/configuring.asciidoc (per-domain-settings)
7 lines
235 B
Nix
7 lines
235 B
Nix
{
|
|
qutebrowser-greasemonkey = ./greasemonkey.nix;
|
|
qutebrowser-keybindings = ./keybindings.nix;
|
|
qutebrowser-quickmarks = ./quickmarks.nix;
|
|
qutebrowser-settings = ./settings.nix;
|
|
qutebrowser-url-settings = ./url-settings.nix;
|
|
}
|