Files
dotfiles/users/richie/home/gui/kitty.nix
2025-02-08 18:13:31 -05:00

14 lines
276 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";
};
themeFile = "VSCode_Dark";
};
}