Added kitty back

This commit is contained in:
fwastring 2025-06-25 17:16:32 +02:00
parent 7722d6fa41
commit b2ad9f21ef
2 changed files with 37 additions and 0 deletions

View file

@ -14,6 +14,7 @@
../shared/tmux.nix ../shared/tmux.nix
../shared/fish.nix ../shared/fish.nix
../shared/git.nix ../shared/git.nix
../shared/kitty.nix
../shared/dunst.nix ../shared/dunst.nix
../shared/nixpkgs.nix ../shared/nixpkgs.nix
../shared/firefox.nix ../shared/firefox.nix

36
shared/kitty.nix Normal file
View file

@ -0,0 +1,36 @@
{
pkgs,
lib,
myhostname,
...
}:
{
programs.kitty = {
enable = true;
font =
if myhostname == "laptop" then
{
# name = "Iosevka Nerd Font Bold";
name = "ComicShannsMono Nerd Font Bold";
# name = "Hack Nerd Font Mono Bold";
size = 15;
}
else
{
# name = "Iosevka Nerd Font Bold";
name = "ComicShannsMono Nerd Font Bold";
# name = "Hack Nerd Font Mono Bold";
size = 12;
};
shellIntegration = {
mode = "no-cursor";
};
themeFile = "Catppuccin-Latte";
settings = {
confirm_os_window_close = 2;
cursor_shape = "block";
cursor_blink_interval = 0;
enable_audio_bell = false;
};
};
}