dotfiles/modules/_base/kitty.nix
2025-06-26 17:03:29 +02:00

20 lines
330 B
Nix

{
...
}:
{
home-manager.users.kalle.programs.kitty = {
enable = true;
themeFile = "Catppuccin-Mocha";
settings = {
background_opacity = "0.8";
allow_remote_control = true;
enable_audio_bell = false;
};
};
kdeglobals = {
General = {
TerminalApplication = "kitty";
};
};
}