This commit is contained in:
mjallen18
2025-12-19 16:59:01 -06:00
parent 76265f9b1b
commit 1280cf9939
4 changed files with 10 additions and 10 deletions

View File

@@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ config, pkgs, system, ... }:
let
# # Pull from global theme options
# themeSize = "standard"; # "standard" | "compact"
@@ -23,6 +23,7 @@ let
# schemeVariants = [ iconScheme ];
# colorVariants = [ iconThemeVariant ];
# };
isDarwin = system == "aarch64_darwin";
in
{
stylix = {
@@ -59,8 +60,8 @@ in
};
sizes = {
applications = 12;
desktop = 14;
applications = if isDarwin then 10 else 12;
desktop = if isDarwin then 12 else 14;
popups = config.stylix.fonts.sizes.desktop;
terminal = config.stylix.fonts.sizes.applications;
};