From abcf8cb09271b66f1003ac2611966ed84a9f7ffb Mon Sep 17 00:00:00 2001 From: Peritia Date: Tue, 3 Mar 2026 09:38:22 +0100 Subject: [PATCH] fix: font being "squished" --- nixosVista/homeManager/waybar/style.nix | 6 +++--- nixosVista/systemWide/font.nix | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/nixosVista/homeManager/waybar/style.nix b/nixosVista/homeManager/waybar/style.nix index 4ae34b1..82b9479 100644 --- a/nixosVista/homeManager/waybar/style.nix +++ b/nixosVista/homeManager/waybar/style.nix @@ -18,7 +18,7 @@ border-radius: 8; min-height: 0; /* For the taskbar, I prefer simple Noto Sans.*/ - font-family: Noto Sans; + font-family: "Noto Sans Nerd Font", "JetBrainsMono Nerd Font", sans-serif; font-weight: bold; font-size: 14px; padding: 0px; @@ -191,7 +191,7 @@ border-radius: 8; min-height: 0; /* For the taskbar, I prefer simple Noto Sans.*/ - font-family: Noto Sans; + font-family: "Noto Sans Nerd Font", "JetBrainsMono Nerd Font", sans-serif; font-weight: bold; font-size: 14px; padding: 0px; @@ -364,7 +364,7 @@ border-radius: 8; min-height: 0; /* For the taskbar, I prefer simple Noto Sans.*/ - font-family: Noto Sans; + font-family: "Noto Sans Nerd Font", "JetBrainsMono Nerd Font", sans-serif; font-weight: bold; font-size: 14px; padding: 0px; diff --git a/nixosVista/systemWide/font.nix b/nixosVista/systemWide/font.nix index f6d87a6..b5332e6 100644 --- a/nixosVista/systemWide/font.nix +++ b/nixosVista/systemWide/font.nix @@ -12,6 +12,7 @@ in { fonts.packages = with pkgs; [ nerd-fonts.jetbrains-mono noto-fonts + nerd-fonts.noto ]; }; }