diff options
author | Zhongheng Liu <z.liu@outlook.com.gr> | 2025-01-14 23:22:44 +0200 |
---|---|---|
committer | Zhongheng Liu <z.liu@outlook.com.gr> | 2025-01-14 23:22:44 +0200 |
commit | 1a57d0a1968da94fc0b38c940bb45255b70abb8d (patch) | |
tree | b4aed259e5eb4e7f7212bd0295add5938f6c39e2 | |
parent | 003d990eacf24cb993761042f192fe3d207cecce (diff) | |
download | nixos-configuration-1a57d0a1968da94fc0b38c940bb45255b70abb8d.tar.gz nixos-configuration-1a57d0a1968da94fc0b38c940bb45255b70abb8d.tar.bz2 nixos-configuration-1a57d0a1968da94fc0b38c940bb45255b70abb8d.zip |
chore(font): font change
-rw-r--r-- | common/variables.nix | 2 | ||||
-rw-r--r-- | home-manager/stvnliu/stylix.nix | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/common/variables.nix b/common/variables.nix index 3cc6988..0762c24 100644 --- a/common/variables.nix +++ b/common/variables.nix @@ -42,7 +42,7 @@ in myAutostartCommands = [ "${pkgs.brightnessctl}/bin/brightnessctl s ${monitorMinBrightness}" ]; }; myConfigLocation = "/home/${myUserName}/nix-conf"; - desktopFontFullName = "IntoneMono NFM:style=Regular"; + desktopFontFullName = "BlexMono Nerd Font:style=Regular"; myAutostartCommands = [ "${pkgs.brightnessctl}/bin/brightnessctl s ${monitorMaxBrightness}" "fcitx5" diff --git a/home-manager/stvnliu/stylix.nix b/home-manager/stvnliu/stylix.nix index 997aade..002079d 100644 --- a/home-manager/stvnliu/stylix.nix +++ b/home-manager/stvnliu/stylix.nix @@ -13,12 +13,12 @@ in image = config.myWallPaperPath; fonts = { sansSerif = { - name = "Aileron"; - package = pkgs.aileron; + name = "Helvetica Neue LT Std"; + package = pkgs.helvetica-neue-lt-std; }; monospace = { name = config.desktopFontFullName; - package = pkgs.nerd-fonts.intone-mono; + package = pkgs.nerd-fonts.blex-mono; }; sizes = { terminal = 16; |