mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +01:00
cb09a968e9
This option provides a more convenient way to overlay dummy packages. It also adds a function `config.lib.test.mkStubPackage` that can, e.g., be used for `package` options.
41 lines
1.1 KiB
Nix
41 lines
1.1 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
programs.qutebrowser = {
|
|
enable = true;
|
|
|
|
enableDefaultBindings = false;
|
|
|
|
keyBindings = {
|
|
normal = {
|
|
"<Ctrl-v>" = "spawn mpv {url}";
|
|
",l" = ''config-cycle spellcheck.languages ["en-GB"] ["en-US"]'';
|
|
};
|
|
prompt = { "<Ctrl-y>" = "prompt-yes"; };
|
|
};
|
|
};
|
|
|
|
test.stubs.qutebrowser = { };
|
|
|
|
nmt.script = let
|
|
qutebrowserConfig = if pkgs.stdenv.hostPlatform.isDarwin then
|
|
".qutebrowser/config.py"
|
|
else
|
|
".config/qutebrowser/config.py";
|
|
in ''
|
|
assertFileContent \
|
|
home-files/${qutebrowserConfig} \
|
|
${
|
|
pkgs.writeText "qutebrowser-expected-config.py" ''
|
|
config.load_autoconfig(False)
|
|
c.bindings.default = {}
|
|
config.bind(",l", "config-cycle spellcheck.languages [\"en-GB\"] [\"en-US\"]", mode="normal")
|
|
config.bind("<Ctrl-v>", "spawn mpv {url}", mode="normal")
|
|
config.bind("<Ctrl-y>", "prompt-yes", mode="prompt")''
|
|
}
|
|
'';
|
|
};
|
|
}
|