40 lines
1.1 KiB
Nix
40 lines
1.1 KiB
Nix
{ lib, config, pkgs, ... }:
|
|
|
|
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;
|
|
|
|
# allow_remote_control = "yes";
|
|
};
|
|
|
|
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"}
|
|
'';
|
|
};
|
|
};
|
|
}
|