feat(kitty): Added kitty terminal config
This commit is contained in:
@@ -15,6 +15,7 @@
|
|||||||
./goread.nix
|
./goread.nix
|
||||||
./ncmpcpp.nix
|
./ncmpcpp.nix
|
||||||
./zellij.nix
|
./zellij.nix
|
||||||
|
./kitty.nix
|
||||||
../modules
|
../modules
|
||||||
]
|
]
|
||||||
++ lib.optionals device.isLinux [../linux];
|
++ lib.optionals device.isLinux [../linux];
|
||||||
|
|||||||
17
common/kitty.nix
Normal file
17
common/kitty.nix
Normal 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";
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user