Files
nixos/modules/home-manager/kitty.nix
Michael Thomson f8857cf147 update
2026-02-09 09:42:02 -05:00

29 lines
532 B
Nix

{
pkgs,
config,
...
}: {
programs.kitty = {
enable = true;
# font = {
# name = "PragmataPro Mono Liga";
# size = 12;
# };
font = {
name = "JetBrainsMono Nerd Font Mono";
size = 12;
package = pkgs.nerd-fonts.jetbrains-mono;
};
shellIntegration = {
enableZshIntegration = true;
};
themeFile = "Modus_Operandi";
# darwinLaunchOptions = [
# "--single-instance"
# ];
settings = {
hide_window_decorations = "titlebar-only";
};
};
}