Files
dotfiles/users/richie/home/gui/kitty.nix
2024-11-19 18:41:56 -05:00

13 lines
270 B
Nix

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