nixos/modules/desktop/alacritty.nix
2023-08-23 21:18:40 +02:00

15 lines
316 B
Nix

{ home-manager, ... }: {
# https://wiki.archlinux.org/title/Alacritty
home-manager.users.caspervk = {
programs.alacritty = {
enable = true;
settings = {
key_bindings = [
{ key = "Return"; mods = "Control|Shift"; action = "SpawnNewInstance"; }
];
};
};
};
}