mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-09 22:12:56 +00:00
24 lines
485 B
Nix
24 lines
485 B
Nix
{ config, pkgs, lib, ... }: {
|
|
|
|
# MacOS-specific settings for Alacritty
|
|
home-manager.users.${config.user} = {
|
|
programs.alacritty.settings = {
|
|
font.size = lib.mkForce 20.0;
|
|
shell.program = "${pkgs.fish}/bin/fish";
|
|
key_bindings = [
|
|
{
|
|
key = "F";
|
|
mods = "Super";
|
|
action = "ToggleSimpleFullscreen";
|
|
}
|
|
{
|
|
key = "L";
|
|
mods = "Super";
|
|
chars = "\\x1F";
|
|
}
|
|
];
|
|
};
|
|
};
|
|
|
|
}
|