mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 05:12:56 +00:00
17 lines
403 B
Nix
17 lines
403 B
Nix
{ 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 = {
|
|
shell = "${pkgs.fish}/bin/fish";
|
|
macos_traditional_fullscreen = true;
|
|
macos_quit_when_last_window_closed = true;
|
|
};
|
|
};
|
|
};
|
|
|
|
}
|