nixos/home-manager/features/kitty.nix
2023-12-15 01:21:10 -05:00

10 lines
190 B
Nix

{ pkgs, ... }: {
programs.kitty = {
enable = true;
shellIntegration.mode = "enabled";
theme = "Tomorrow Night";
environment = {
DIRENV_LOG_FORMAT = "";
};
};
}