Files
dotfiles/home/apps/kitty.nix

33 lines
776 B
Nix

{
lib,
pkgs,
device,
inputs,
...
}: {
programs.kitty = {
enable = true;
# enable = false;
font = {
# name = "FiraCode Nerd Font Mono";
# name = "Hasklug Nerd Font Mono";
# name = "Monaspace Krypton Var Light";
size = lib.mkDefault 13;
};
settings = {
background_opacity = lib.mkDefault "0.8";
background = lib.mkDefault "#000000";
shell = "${pkgs.fish}/bin/fish";
hide_window_decorations = "yes";
cursor_trail = 1;
close_on_child_death = "yes";
};
shellIntegration.enableFishIntegration = true;
darwinLaunchOptions = [
"--single-instance"
];
themeFile = "Catppuccin-Mocha";
# package = inputs.nixpkgs-stable.legacyPackages.${device.system}.kitty;
};
}