Michael Thomson 5a9eafc05c
formatting
Signed-off-by: Michael Thomson <michael@michaelthomson.dev>
2024-11-17 21:07:58 -05:00

25 lines
402 B
Nix

{
pkgs,
config,
...
}: {
programs.kitty = {
enable = true;
font = {
name = "JetBrainsMono Nerd Font";
size = 12;
};
shellIntegration = {
enableZshIntegration = true;
};
themeFile = "kanagawa";
# darwinLaunchOptions = [
# "--single-instance"
# ];
settings = {
background_opacity = "0.9";
background_blur = 5;
};
};
}