Skip to content

Commit

Permalink
feat(darwin): setup DISPLAY && font
Browse files Browse the repository at this point in the history
  • Loading branch information
WilliamHsieh committed Sep 4, 2024
1 parent b9c49d1 commit e2eacd2
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions home/alacritty.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,13 @@
TERM = "xterm-256color";
LANG = "C.UTF-8";
CC = "gcc";
};
} // (if pkgs.stdenv.isDarwin then {
# NOTE: ssh with `-Y` to setup remote DISPLAY properly
DISPLAY = ":0";
} else { });
font = {
normal.family = "MesloLGMDZ Nerd Font Mono";
size = 10.5;
normal.family = "MesloLGLDZ Nerd Font Mono";
size = 14;
};
window = {
dynamic_padding = true;
Expand Down

0 comments on commit e2eacd2

Please sign in to comment.