28 lines
661 B
Nix
28 lines
661 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 = {
|
|
preferred_color_scheme = "dark";
|
|
# darkmode.enabled = true;
|
|
};
|
|
|
|
# I thought this was a good idea, but now everyone thinks I'm a robot.
|
|
# content.headers.user_agent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.3";
|
|
};
|
|
};
|
|
}
|