Temp fix for stylix setting qutebrowser font size wrong

This commit is contained in:
Evie Litherland-Smith 2024-02-01 11:41:46 +00:00
parent ec76216d8d
commit 2a5a82afa7

View file

@ -1,4 +1,8 @@
{...}: {
{
config,
lib,
...
}: {
stylix.targets.qutebrowser.enable = true;
programs.qutebrowser = {
enable = true;
@ -13,6 +17,9 @@
a = "https://search.atlas.engineer/searxng/search?q={}";
DEFAULT = a;
};
settings.tabs.tabs_are_windows = true;
settings = {
tabs.tabs_are_windows = true;
fonts.web.size.default = lib.mkForce config.stylix.fonts.sizes.applications; # Temp fix until stylix is updated
};
};
}