configuration.nix/home/modules/programs/kitty/default.nix

19 lines
371 B
Nix
Raw Permalink Normal View History

2023-12-05 18:17:18 +01:00
{ pkgs, ... }: {
2023-11-18 11:39:46 +01:00
programs.kitty = {
enable = true;
2023-12-05 18:17:18 +01:00
font = {
package = pkgs.fira-code;
name = "FiraCodeNFM-Reg";
};
2024-07-02 19:05:07 +02:00
shellIntegration = {
enableBashIntegration = true;
enableZshIntegration = true;
};
2023-11-18 11:39:46 +01:00
settings = {
background_opacity = "0.96";
cursor_shape = "beam";
2024-07-02 19:07:45 +02:00
term = "screen-256color";
2023-11-18 11:39:46 +01:00
};
};
}