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