24 lines
388 B
Nix
24 lines
388 B
Nix
{ ... }: {
|
|
imports = [ ./colors.nix ];
|
|
|
|
programs.qutebrowser = {
|
|
enable = true;
|
|
loadAutoconfig = true;
|
|
keyBindings = {
|
|
normal = {
|
|
"gp" = "mode-enter passthrough";
|
|
};
|
|
};
|
|
settings = {
|
|
tabs = {
|
|
tabs_are_windows = true;
|
|
show = "never";
|
|
};
|
|
|
|
colors = {
|
|
webpage.darkmode.enabled = true;
|
|
};
|
|
};
|
|
};
|
|
}
|