From b2ad9f21ef33a4f8da2f838c7a464ae609642f47 Mon Sep 17 00:00:00 2001 From: fwastring Date: Wed, 25 Jun 2025 17:16:32 +0200 Subject: [PATCH] Added kitty back --- config/home.nix | 1 + shared/kitty.nix | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+) create mode 100644 shared/kitty.nix diff --git a/config/home.nix b/config/home.nix index 7e95c80..352c19d 100644 --- a/config/home.nix +++ b/config/home.nix @@ -14,6 +14,7 @@ ../shared/tmux.nix ../shared/fish.nix ../shared/git.nix + ../shared/kitty.nix ../shared/dunst.nix ../shared/nixpkgs.nix ../shared/firefox.nix diff --git a/shared/kitty.nix b/shared/kitty.nix new file mode 100644 index 0000000..2d81694 --- /dev/null +++ b/shared/kitty.nix @@ -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; + }; + }; +}