19 lines
342 B
Nix
19 lines
342 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
programs.alacritty = {
|
|
enable = true;
|
|
settings = {
|
|
cursor.style = "beam";
|
|
font.size = 10;
|
|
|
|
# workaround for scaling in X11
|
|
env.WINIT_X11_SCALE_FACTOR = "1";
|
|
|
|
# for zellij on macOS
|
|
window.option_as_alt = lib.mkIf pkgs.stdenv.hostPlatform.isDarwin "Both";
|
|
};
|
|
};
|
|
}
|