mirror of
https://github.com/davegallant/nix-config
synced 2025-08-06 11:23:40 +00:00
Conditionally size alacritty font based on linux or darwin
This commit is contained in:
@@ -154,10 +154,17 @@ in
|
||||
live_config_reload = true;
|
||||
mouse.hide_when_typing = true;
|
||||
|
||||
font = {
|
||||
normal.family = "Fira Code";
|
||||
size = 12;
|
||||
};
|
||||
font =
|
||||
if stdenv.isLinux then
|
||||
{
|
||||
normal.family = "Fira Code";
|
||||
size = 12;
|
||||
}
|
||||
else
|
||||
{
|
||||
normal.family = "Fira Code";
|
||||
size = 18;
|
||||
};
|
||||
|
||||
shell = {
|
||||
program = "zsh";
|
||||
|
Reference in New Issue
Block a user