nixconf/common/kitty.nix
2024-03-01 13:46:10 +01:00

14 lines
219 B
Nix

{ config, pkgs, inputs, ... }:
{
home.packages = with pkgs; [
kitty
];
programs.kitty = {
enable = true;
settings = {
confirm_os_window_close = 0;
};
shellIntegration.enableZshIntegration = true;
};
}