switch font to maple mono

This commit is contained in:
Noah Masur
2026-03-25 22:08:05 -04:00
parent 4444a479d4
commit f5f3a8336e
3 changed files with 19 additions and 7 deletions

View File

@@ -0,0 +1,8 @@
{
"permissions": {
"allow": [
"WebFetch(domain:github.com)",
"WebFetch(domain:raw.githubusercontent.com)"
]
}
}

View File

@@ -17,23 +17,27 @@ in
home.packages = [ home.packages = [
pkgs.nerd-fonts.victor-mono # Used for Vim and Terminal pkgs.nerd-fonts.victor-mono # Used for Vim and Terminal
pkgs.nerd-fonts.hack # For Polybar, Rofi pkgs.nerd-fonts.hack # For Polybar, Rofi
# Maple Mono NF (Ligature unhinted)
pkgs.maple-mono.NF-unhinted
]; ];
fonts.fontconfig = { fonts.fontconfig = {
enable = true; enable = true;
defaultFonts.monospace = [ "Victor Mono" ]; defaultFonts.monospace = [ "Maple Mono NF" ];
}; };
xsession.windowManager.i3.config.fonts = { xsession.windowManager.i3.config.fonts = {
names = [ "pango:Victor Mono" ]; # names = [ "pango:Victor Mono" ];
names = [ "pango:Maple Mono" ];
# style = "Regular"; # style = "Regular";
# size = 11.0; # size = 11.0;
}; };
services.polybar.config."bar/main".font-0 = "Hack Nerd Font:size=10;2"; services.polybar.config."bar/main".font-0 = "Hack Nerd Font:size=10;2";
programs.rofi.font = "Hack Nerd Font 14"; programs.rofi.font = "Hack Nerd Font 14";
programs.alacritty.settings.font.normal.family = "VictorMono"; programs.alacritty.settings.font.normal.family = "Maple Mono NF";
programs.kitty.font.name = "VictorMono Nerd Font Mono"; programs.kitty.font.name = "Maple Mono NF";
nmasur.presets.programs.wezterm.font = "VictorMono Nerd Font Mono"; nmasur.presets.programs.wezterm.font = "Maple Mono NF";
programs.ghostty.settings.font-family = "VictorMono Nerd Font Mono"; programs.ghostty.settings.font-family = "Maple Mono NF";
services.dunst.settings.global.font = "Hack Nerd Font 14"; services.dunst.settings.global.font = "Hack Nerd Font 14";
}; };
} }

View File

@@ -31,7 +31,7 @@ in
pkgs.comma # Nix-index auto-launch pkgs.comma # Nix-index auto-launch
pkgs.nix-inspect # TUI for browsing Nix configs pkgs.nix-inspect # TUI for browsing Nix configs
pkgs.crush # AI LLM Agent # pkgs.crush # AI LLM Agent
pkgs.gemini-cli # AI LLM Agent pkgs.gemini-cli # AI LLM Agent
]; ];