mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-09 23:22:57 +00:00
11 lines
197 B
Nix
11 lines
197 B
Nix
{ config, ... }: {
|
|
|
|
home-manager.users.${config.user}.programs.alacritty.settings.key_bindings =
|
|
[{
|
|
key = "F";
|
|
mods = "Super";
|
|
action = "ToggleSimpleFullscreen";
|
|
}];
|
|
|
|
}
|