{ config, lib, pkgs, ... }: with lib; { config = { programs.qutebrowser = { enable = true; enableDefaultBindings = false; keyBindings = { normal = { "" = "spawn mpv {url}"; ",l" = ''config-cycle spellcheck.languages ["en-GB"] ["en-US"]''; }; prompt = { "" = "prompt-yes"; }; }; }; nixpkgs.overlays = [ (self: super: { qutebrowser = pkgs.writeScriptBin "dummy-qutebrowser" ""; }) ]; nmt.script = '' assertFileContent \ home-files/.config/qutebrowser/config.py \ ${ pkgs.writeText "qutebrowser-expected-config.py" '' c.bindings.default = {} config.bind(",l", "config-cycle spellcheck.languages [\"en-GB\"] [\"en-US\"]", mode="normal") config.bind("", "spawn mpv {url}", mode="normal") config.bind("", "prompt-yes", mode="prompt")'' } ''; }; }