mirror of
https://github.com/davegallant/nix-config
synced 2025-08-06 11:23:40 +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.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";
|
||||||
|
Reference in New Issue
Block a user