dotfiles/modules/darwin/kitty.nix

19 lines
517 B
Nix
Raw Normal View History

2022-10-31 18:45:51 +00:00
{ config, pkgs, lib, ... }: {
# MacOS-specific settings for Kitty
2022-12-21 21:18:03 +00:00
home-manager.users.${config.user} = lib.mkIf pkgs.stdenv.isDarwin {
2022-10-31 18:45:51 +00:00
programs.kitty = {
darwinLaunchOptions = [ "--start-as=fullscreen" ];
font.size = lib.mkForce 20;
settings = {
2022-11-20 02:11:26 +00:00
shell = "/run/current-system/sw/bin/fish";
2022-10-31 18:45:51 +00:00
macos_traditional_fullscreen = true;
macos_quit_when_last_window_closed = true;
2022-11-20 18:55:11 +00:00
disable_ligatures = "always";
2022-11-23 21:37:57 +00:00
macos_option_as_alt = true;
2022-10-31 18:45:51 +00:00
};
};
};
}