nixos/home/modules/kitty.nix

42 lines
1.1 KiB
Nix
Raw Normal View History

2024-11-29 12:51:14 -08:00
{ lib, config, pkgs, ... }:
2024-11-23 16:04:14 -08:00
let
cfg = config.snowhawk.kitty;
macos = config.snowhawk.macos.enable;
in
{
options.snowhawk.kitty = {
enable = lib.mkEnableOption "kitty home-manager module";
};
config = lib.mkIf cfg.enable {
programs.kitty = {
enable = true;
shellIntegration.enableFishIntegration = true;
settings = {
font_family = "family=\"JetBrainsMono Nerd Font\" style=\"ExtraLight\"";
bold_font = "family=\"JetBrainsMono Nerd Font\" style=\"Light\"";
italic_font = "family=\"JetBrainsMono Nerd Font\" style=\"ExtraLight Italic\"";
bold_italic_font = "family=\"JetBrainsMono Nerd Font\" style=\"Light Italic\"";
background = "#050505";
background_opacity = 0.98;
font_size = 12;
2024-11-28 19:31:39 -08:00
# FIXME: I really should remove this
allow_remote_control = "yes";
2024-11-23 16:04:14 -08:00
};
2024-11-29 12:51:14 -08:00
extraConfig =
let
kitten = "${pkgs.kitty}/bin/kitten";
in
''
include ${../../home/kitty/alacritty-colors.conf}
map ctrl+k ${pkgs.writeShellScript "kitten-snap" "${kitten} @ get-text --self --ansi > /tmp/test"}
'';
2024-11-23 16:04:14 -08:00
};
};
}