From 1901e60d07262ef736b836c8dda53ca3fd93776e Mon Sep 17 00:00:00 2001 From: thiloho <123883702+thiloho@users.noreply.github.com> Date: Tue, 27 Jun 2023 19:38:43 +0200 Subject: [PATCH] Simplify fonts --- nixos-configurations/shared.nix | 34 ++------------------------------- 1 file changed, 2 insertions(+), 32 deletions(-) diff --git a/nixos-configurations/shared.nix b/nixos-configurations/shared.nix index a0996a7..903032b 100644 --- a/nixos-configurations/shared.nix +++ b/nixos-configurations/shared.nix @@ -37,17 +37,7 @@ ]; }; - fonts = { - fonts = with pkgs; [ - noto-fonts - noto-fonts-emoji - noto-fonts-cjk-sans - nerdfonts - roboto - jetbrains-mono - open-sans - ]; - }; + fonts.enableDefaultFonts = true; users.users.thiloho = { isNormalUser = true; @@ -121,9 +111,7 @@ * { border: none; border-radius: 0; - font-family: "Open Sans"; font-size: 0.875rem; - font-weight: 600; } window#waybar { @@ -186,25 +174,7 @@ enable = true; settings = { window.opacity = 0.75; - font = { - normal = { - family = "JetBrainsMono"; - style = "regular"; - }; - bold = { - family = "JetBrainsMono"; - style = "regular"; - }; - italic = { - family = "JetBrainsMono"; - style = "regular"; - }; - bold_italic = { - family = "JetBrainsMono"; - style = "regular"; - }; - size = 11.00; - }; + font.size = 11.00; }; }; firefox.enable = true;