Files
dotfiles/common/kitty.nix
2024-03-28 13:33:46 +05:30

17 lines
348 B
Nix

{pkgs, ...}: {
programs.kitty = {
enable = true;
font = {
name = "Hasklug Nerd Font Mono";
size = 13;
};
settings = {
background_opacity = "0.8";
background = "#000000";
shell = "${pkgs.fish}/bin/fish";
};
shellIntegration.enableFishIntegration = true;
theme = "Catppuccin-Mocha";
};
}