diff --git a/hm_modules/alacritty.nix b/hm_modules/alacritty.nix index 96ee39d..e04b0c0 100644 --- a/hm_modules/alacritty.nix +++ b/hm_modules/alacritty.nix @@ -33,18 +33,17 @@ in scrolling.history = 3000; font = { normal.family = pkgs.rice.font.monospace.name; - size = pkgs.rice.font.monospace.size / 1.5; # Font size is broken + size = pkgs.rice.font.monospace.size / 1.2; # Font size is broken }; window.opacity = pkgs.rice.opacity; mouse = { # hide_when_typing = true; hints.modifiers = "Control"; }; - colors = with pkgs.rice; - strPalette // { - selection.text = "CellForeground"; - search.matches.foreground = "CellForeground"; - }; + colors = strPalette // { + selection.text = "CellForeground"; + search.matches.foreground = "CellForeground"; + }; }; }; }