fixup! home/alacritty: enable option_as_alt
This commit is contained in:
parent
c95939e817
commit
59cb9f8a64
1 changed files with 5 additions and 1 deletions
|
@ -1,9 +1,13 @@
|
|||
{
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
programs.alacritty = {
|
||||
enable = true;
|
||||
settings = {
|
||||
env.WINIT_X11_SCALE_FACTOR = "1"; # workaround for scaling in X11
|
||||
window.option_as_alt = "Both"; # for zellij on macOS
|
||||
window.option_as_alt = lib.mkIf pkgs.stdenv.hostPlatform.isDarwin "Both"; # for zellij on macOS
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue