feat(kitty): Added kitty terminal config

This commit is contained in:
uttarayan21
2024-03-25 05:40:43 +05:30
parent c6f326f64c
commit 8497db7318
2 changed files with 18 additions and 0 deletions

View File

@@ -15,6 +15,7 @@
./goread.nix
./ncmpcpp.nix
./zellij.nix
./kitty.nix
../modules
]
++ lib.optionals device.isLinux [../linux];

17
common/kitty.nix Normal file
View File

@@ -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";
};
}