dotfiles/modules/darwin/kitty.nix

17 lines
413 B
Nix
Raw Normal View History

2022-10-31 18:45:51 +00:00
{ config, pkgs, lib, ... }: {
# MacOS-specific settings for Kitty
home-manager.users.${config.user} = {
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;
};
};
};
}