nixcfg/homeManagerModules/apps/kitty/default.nix

25 lines
564 B
Nix
Raw Normal View History

2024-07-23 23:21:59 -04:00
{
config,
lib,
pkgs,
...
}: {
config = lib.mkIf config.ar.home.apps.kitty.enable {
programs.kitty = {
enable = true;
font = {
name = "NotoSansM Nerd Font";
size = config.gtk.font.size;
};
settings = {
background = "${config.ar.home.theme.colors.background}";
background_opacity = "0.8";
foreground = "${config.ar.home.theme.colors.text}";
notify_on_cmd_finish = "unfocused 10.0 command ${lib.getExe pkgs.libnotify} \"Job Finished with Status: %s\" %c";
};
};
};
}