From d045508696c2a71243b22164b17e92924814779d Mon Sep 17 00:00:00 2001 From: Sebastian Estrella <2049686+sestrella@users.noreply.github.com> Date: Tue, 7 May 2024 20:35:09 -0500 Subject: [PATCH] Change fontsize --- home.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home.nix b/home.nix index 9ca927d..e1ade87 100644 --- a/home.nix +++ b/home.nix @@ -46,12 +46,12 @@ programs.alacritty = { enable = true; settings = { - import = [ "${pkgs.alacritty-theme}/solarized_light.yaml" ]; + import = [ "${pkgs.alacritty-theme}/solarized_dark.yaml" ]; font.normal = { family = "FiraCode Nerd Font Mono"; style = "Medium"; }; - font.size = 16; + font.size = 15; shell.program = "${pkgs.fish}/bin/fish"; }; };