Files
nixos-thinkpad/desktop/home/kitty/default.nix
T
2026-04-19 17:12:27 +02:00

16 lines
211 B
Nix
Executable File

{ config, lib, ... }:
{
programs.kitty = {
enable = true;
shellIntegration.enableZshIntegration = true;
};
# Catppuccin <3
catppuccin.kitty = {
enable = true;
flavor = "mocha";
};
}