From 8497db73184568511f550478d8c81d283fd2ffce Mon Sep 17 00:00:00 2001 From: uttarayan21 Date: Mon, 25 Mar 2024 05:40:43 +0530 Subject: [PATCH] feat(kitty): Added kitty terminal config --- common/home.nix | 1 + common/kitty.nix | 17 +++++++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 common/kitty.nix diff --git a/common/home.nix b/common/home.nix index ade2293b..b50c4073 100644 --- a/common/home.nix +++ b/common/home.nix @@ -15,6 +15,7 @@ ./goread.nix ./ncmpcpp.nix ./zellij.nix + ./kitty.nix ../modules ] ++ lib.optionals device.isLinux [../linux]; diff --git a/common/kitty.nix b/common/kitty.nix new file mode 100644 index 00000000..c72ef91c --- /dev/null +++ b/common/kitty.nix @@ -0,0 +1,17 @@ +{pkgs, ...}: { + programs.kitty = { + enable = true; + font = { + name = "Hasklug Nerd Font Mono"; + size = 13; + }; + settings = { + background_opacity = "0"; + background_tint = "0.8"; + background_color = "#0000000"; + shell = "${pkgs.fish}/bin/fish"; + }; + shellIntegration.enableFishIntegration = true; + theme = "Catppuccin-Mocha"; + }; +}