Re-add dynamic terminal sizing based on os

This commit is contained in:
Dave Gallant
2024-05-23 20:52:45 -04:00
parent c0b834a0c7
commit faf538d81d

View File

@@ -18,7 +18,14 @@ in
targets.alacritty.enable = true; targets.alacritty.enable = true;
targets.tmux.enable = true; targets.tmux.enable = true;
fonts.sizes.terminal = 16; fonts.sizes =
if stdenv.isLinux
then {
terminal = 14;
}
else {
terminal = 16;
};
fonts.monospace = { fonts.monospace = {
name = "FiraCode Nerd Font Mono"; name = "FiraCode Nerd Font Mono";