nixos-conf/program-config-files/alacritty.nix

18 lines
419 B
Nix
Raw Normal View History

2024-12-10 20:59:08 +02:00
{ config, pkgs, ... }:
pkgs.writeText "alacritty-conf" ''
[font]
size = 16
[cursor]
shape = "Beam"
blinking = "On"
[keyboard]
bindings = [
{key = "-", mods = "Super", action = "DecreaseFontSize"},
{key = "+", mods = "Super", action = "IncreaseFontSize"},
{key = "=", mods = "Super", action = "ResetFontSize"},
{key = "Enter", mods = "Super | Shift", action = "SpawnNewInstance"},
]
''