added kitty terminal

This commit is contained in:
2024-11-19 18:41:56 -05:00
parent a0fea7c972
commit 65804cf07c
2 changed files with 13 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
{pkgs, ...}: {
programs.kitty = {
enable = true;
font.name = "IntoneMono Nerd Font";
settings = {
allow_remote_control = "no";
shell = "${pkgs.zsh}/bin/zsh";
wayland_titlebar_color = "background";
};
theme = "VSCode_Dark";
};
}