From 461c59037c3e3401c39497dd2a9d283913d4f475 Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Sun, 6 Jul 2025 03:46:11 +0200 Subject: [PATCH] Home: Switch font to MonoLisa --- home/christoph/default.nix | 3 ++- system/default.nix | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/home/christoph/default.nix b/home/christoph/default.nix index 82c0b290..419ececb 100644 --- a/home/christoph/default.nix +++ b/home/christoph/default.nix @@ -49,7 +49,8 @@ rec { enable = true; # You can't disable this lightScheme = "catppuccin-latte"; darkScheme = "catppuccin-mocha"; - font = "JetBrainsMono Nerd Font Mono"; # NOTE: Match with fontconfig monospace default font + # font = "JetBrainsMono Nerd Font Mono"; + font = builtins.head nixosConfig.fonts.fontconfig.defaultFonts.monospace; }; docs.enable = true; diff --git a/system/default.nix b/system/default.nix index 503cbedb..338f18d4 100644 --- a/system/default.nix +++ b/system/default.nix @@ -362,7 +362,7 @@ with mylib.networking; { defaultFonts = { serif = ["Noto Serif CJK SC"]; sansSerif = ["Noto Sans CJK SC"]; - monospace = ["JetBrainsMono Nerd Font Mono"]; # NOTE: Match with color.font + monospace = ["MonoLisa" "JetBrainsMono Nerd Font Mono"]; # NOTE: Match with color.font }; }; };