nixos-conf/personal/programs/embedded/alacritty.nix

18 lines
354 B
Nix
Raw Normal View History

2025-05-29 15:39:42 +03:00
{ pkgs, ... }:
pkgs.writeText "alacritty-conf" ''
[font]
size = 13
2025-05-29 15:39:42 +03:00
[cursor]
style.shape = "Beam"
style.blinking = "On"
blink_timeout = 0
unfocused_hollow = false
[keyboard]
bindings = [
{key = "+", mods = "Control | Shift", action = "ResetFontSize"},
{key = "Enter", mods = "Alt | Shift", action = "SpawnNewInstance"},
]
2025-05-29 15:39:42 +03:00
''