dotfiles/modules/darwin/kitty.nix

23 lines
467 B
Nix
Raw Normal View History

2024-04-20 09:42:06 -04:00
{
config,
pkgs,
lib,
...
}:
{
2022-10-31 14:45:51 -04:00
# MacOS-specific settings for Kitty
2022-12-21 14:18:03 -07:00
home-manager.users.${config.user} = lib.mkIf pkgs.stdenv.isDarwin {
2022-10-31 14:45:51 -04:00
programs.kitty = {
font.size = lib.mkForce 20;
settings = {
2022-11-19 19:11:26 -07:00
shell = "/run/current-system/sw/bin/fish";
2022-10-31 14:45:51 -04:00
macos_traditional_fullscreen = true;
macos_quit_when_last_window_closed = true;
2022-11-20 11:55:11 -07:00
disable_ligatures = "always";
2022-11-23 14:37:57 -07:00
macos_option_as_alt = true;
2022-10-31 14:45:51 -04:00
};
};
};
}