stylix: Use variable for font-size

This commit is contained in:
Donovan Glover 2023-06-27 04:46:28 -04:00
parent b7bd3a3632
commit d0b8300bea
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -3,6 +3,7 @@
let
theme = "oceanicnext";
opacity = 0.92;
font-size = 11;
in
{
stylix.image = ../assets/wallpaper.png;
@ -36,10 +37,10 @@ in
};
sizes = {
applications = 11;
desktop = 11;
popups = 11;
terminal = 11;
applications = font-size;
desktop = font-size;
popups = font-size;
terminal = font-size;
};
};
}