From d0b8300bea4d00ba1d972065fb3de1b87cd0a4c6 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Tue, 27 Jun 2023 04:46:28 -0400 Subject: [PATCH] stylix: Use variable for font-size --- modules/stylix.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/modules/stylix.nix b/modules/stylix.nix index a7b4eca0..23c6dcce 100644 --- a/modules/stylix.nix +++ b/modules/stylix.nix @@ -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; }; }; }