2025-09-26 21:38:33 -04:00

29 lines
530 B
Nix

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