mirror of
https://github.com/davegallant/nix-config
synced 2025-08-06 03:13:38 +00:00
Re-add dynamic terminal sizing based on os
This commit is contained in:
@@ -18,7 +18,14 @@ in
|
||||
targets.alacritty.enable = true;
|
||||
targets.tmux.enable = true;
|
||||
|
||||
fonts.sizes.terminal = 16;
|
||||
fonts.sizes =
|
||||
if stdenv.isLinux
|
||||
then {
|
||||
terminal = 14;
|
||||
}
|
||||
else {
|
||||
terminal = 16;
|
||||
};
|
||||
|
||||
fonts.monospace = {
|
||||
name = "FiraCode Nerd Font Mono";
|
||||
|
Reference in New Issue
Block a user