Files
dotfiles/home/apps/kitty.nix
uttarayan21 3164862970
All checks were successful
Flake checker / Build Nix targets (push) Successful in 9m28s
feat: Added cursor_trail 1
2025-08-17 16:05:37 +05:30

32 lines
723 B
Nix

{
pkgs,
device,
inputs,
...
}: {
programs.kitty = {
enable = true;
# enable = false;
font = {
# name = "FiraCode Nerd Font Mono";
name = "Hasklug Nerd Font Mono";
# name = "Monaspace Krypton Var Light";
size = 13;
};
settings = {
background_opacity = "0.8";
background = "#000000";
shell = "${pkgs.fish}/bin/fish";
hide_window_decorations = "yes";
cursor_trail = 1;
close_on_child_death = "yes";
};
shellIntegration.enableFishIntegration = true;
darwinLaunchOptions = [
"--single-instance"
];
themeFile = "Catppuccin-Mocha";
package = inputs.nixpkgs-master.legacyPackages.${device.system}.kitty;
};
}