10 lines
190 B
Nix
10 lines
190 B
Nix
{ pkgs, ... }: {
|
|
programs.kitty = {
|
|
enable = true;
|
|
shellIntegration.mode = "enabled";
|
|
theme = "Tomorrow Night";
|
|
environment = {
|
|
DIRENV_LOG_FORMAT = "";
|
|
};
|
|
};
|
|
}
|