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 = {
|
programs.alacritty = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
env.WINIT_X11_SCALE_FACTOR = "1"; # workaround for scaling in X11
|
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