deprecate stylix, fix minor gripes and bugs

This commit is contained in:
alisceon 2026-05-22 19:48:24 +02:00
parent 6b492bad2f
commit fb1ad8d919
42 changed files with 951 additions and 688 deletions

View file

@ -0,0 +1,23 @@
{ theme, ... }:
let
fonts = theme.fonts;
fontSize = toString fonts.sizes.applications;
in
{
programs.qutebrowser.settings.fonts = {
default_family = fonts.sansSerif.name;
default_size = "${fontSize}pt";
web = {
family = {
cursive = fonts.serif.name;
fantasy = fonts.serif.name;
fixed = fonts.monospace.name;
sans_serif = fonts.sansSerif.name;
serif = fonts.serif.name;
standard = fonts.sansSerif.name;
};
size.default = 18;
};
};
}