mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +01:00
48 lines
1 KiB
Nix
48 lines
1 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
programs.qutebrowser = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
colors = {
|
|
hints = {
|
|
bg = "#000000";
|
|
fg = "#ffffff";
|
|
};
|
|
tabs.bar.bg = "#000000";
|
|
};
|
|
spellcheck.languages = [ "en-US" "sv-SE" ];
|
|
tabs.tabs_are_windows = true;
|
|
};
|
|
|
|
extraConfig = ''
|
|
# Extra qutebrowser configuration.
|
|
'';
|
|
};
|
|
|
|
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.colors.hints.bg = "#000000"
|
|
c.colors.hints.fg = "#ffffff"
|
|
c.colors.tabs.bar.bg = "#000000"
|
|
c.spellcheck.languages = ["en-US", "sv-SE"]
|
|
c.tabs.tabs_are_windows = True
|
|
# Extra qutebrowser configuration.
|
|
''
|
|
}
|
|
'';
|
|
};
|
|
}
|