nixcfg/homeManagerModules/apps/kitty/default.nix

23 lines
500 B
Nix
Raw Permalink Normal View History

2024-07-23 23:21:59 -04:00
{
config,
lib,
pkgs,
...
}: let
cfg = config.ar.home;
in {
config = lib.mkIf cfg.apps.kitty.enable {
2024-07-23 23:21:59 -04:00
programs.kitty = {
enable = true;
settings = {
2024-10-24 22:30:33 -04:00
background_blur = 1;
confirm_os_window_close = 0;
notify_on_cmd_finish = "unfocused 10.0 command ${lib.getExe pkgs.libnotify} -i ${pkgs.kitty}/share/icons/hicolor/256x256/apps/kitty.png \"Job Finished\"";
tab_bar_style = "powerline";
2024-09-04 20:39:24 -04:00
window_padding_width = 5;
2024-07-23 23:21:59 -04:00
};
};
};
}