23 lines
397 B
Nix
23 lines
397 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;
|
|
};
|
|
};
|
|
}
|