From 27a3b787d50f6f514a52ef82e417ad6417e99a96 Mon Sep 17 00:00:00 2001 From: Isshi0417 Date: Mon, 15 Jul 2024 23:20:13 +0900 Subject: [PATCH] Change font --- modules/home-manager/terminal/wezterm/config/wezterm.lua | 2 +- modules/system/default.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/home-manager/terminal/wezterm/config/wezterm.lua b/modules/home-manager/terminal/wezterm/config/wezterm.lua index 2124a60..d248059 100644 --- a/modules/home-manager/terminal/wezterm/config/wezterm.lua +++ b/modules/home-manager/terminal/wezterm/config/wezterm.lua @@ -3,6 +3,6 @@ local wezterm = require 'wezterm' local config = wezterm.config_builder() config.color_scheme = 'Gruvbox dark, medium (base16)' -config.font = wezterm.font 'GohuFont 14 Nerd Font Mono' +config.font = wezterm.font 'FiraCode Nerd Font Mono' return config \ No newline at end of file diff --git a/modules/system/default.nix b/modules/system/default.nix index e7a2afb..6a2daf9 100644 --- a/modules/system/default.nix +++ b/modules/system/default.nix @@ -38,7 +38,7 @@ defaultFonts = { serif = [ "Hack Nerd Font" ]; sansSerif = [ "Hack Nerd Font" ]; - monospace = [ "GohuFont 14 Nerd Font" ]; + monospace = [ "FiraCode Nerd Font Mono" ]; }; }; };