diff options
-rw-r--r-- | users/grfn/system/home/modules/alacritty.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/users/grfn/system/home/modules/alacritty.nix b/users/grfn/system/home/modules/alacritty.nix index 67d6638a31f8..561cab4d79cb 100644 --- a/users/grfn/system/home/modules/alacritty.nix +++ b/users/grfn/system/home/modules/alacritty.nix @@ -7,9 +7,7 @@ font.size = 6; font.normal.family = "Meslo LGSDZ Nerd Font"; - draw_bold_text_with_bright_colors = false; - - key_bindings = [ + keyboard.bindings = [ { key = "Escape"; mods = "Control"; @@ -18,6 +16,8 @@ ]; colors = with import ../common/solarized.nix; rec { + draw_bold_text_with_bright_colors = false; + # Default colors primary = { background = base3; |