From 43c720d2451194c694361cdff3397bc2a659ab4a Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Fri, 23 Jun 2023 22:33:42 +0100 Subject: [PATCH] chore(alacritty): use IBM Plex Mono --- home-manager/nixedo.nix | 2 +- system/nixos/nixedo/configuration.nix | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/home-manager/nixedo.nix b/home-manager/nixedo.nix index 09eb97d..e899784 100644 --- a/home-manager/nixedo.nix +++ b/home-manager/nixedo.nix @@ -28,7 +28,7 @@ font = { size = 12.0; - normal.family = "JetBrainsMono Nerd Font"; + normal.family = "BlexMono Nerd Font Mono"; offset.y = 12; glyph_offset.y = 6; diff --git a/system/nixos/nixedo/configuration.nix b/system/nixos/nixedo/configuration.nix index d3b3acc..bc36a60 100644 --- a/system/nixos/nixedo/configuration.nix +++ b/system/nixos/nixedo/configuration.nix @@ -181,7 +181,7 @@ in fontconfig = { enable = true; defaultFonts = { - monospace = [ "Meslo LG M Regular Nerd Font Complete Mono" ]; + monospace = [ "BlexMono Nerd Font Mono" ]; }; }; fonts = with pkgs; [ @@ -189,6 +189,7 @@ in fonts = [ "Iosevka" "JetBrainsMono" + "IBMPlexMono" "Meslo" ]; })