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;
|
live_config_reload = true;
|
||||||
mouse.hide_when_typing = true;
|
mouse.hide_when_typing = true;
|
||||||
|
|
||||||
font = {
|
font =
|
||||||
normal.family = "Fira Code";
|
if stdenv.isLinux then
|
||||||
size = 12;
|
{
|
||||||
};
|
normal.family = "Fira Code";
|
||||||
|
size = 12;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
normal.family = "Fira Code";
|
||||||
|
size = 18;
|
||||||
|
};
|
||||||
|
|
||||||
shell = {
|
shell = {
|
||||||
program = "zsh";
|
program = "zsh";
|
||||||
|
Reference in New Issue
Block a user