tmux: setup for servers

This commit is contained in:
Christoph Hollizeck 2025-12-15 16:45:40 +01:00
parent 5ce026332c
commit e515aae340
Signed by: Daholli
GPG key ID: 249300664F2AF2C7
6 changed files with 70 additions and 60 deletions

View file

@ -0,0 +1,37 @@
{
flake.modules = {
homeManager.cholli =
{ pkgs, ... }:
{
catppuccin.kitty.enable = true;
home.sessionVariables.TERMINAL = "kitty";
programs.kitty = {
enable = true;
font = {
name = "FiraCode Nerd Font";
size = 15;
};
shellIntegration.enableFishIntegration = true;
settings = {
"background_opacity" = "0.90";
"shell" = "fish";
"confirm_os_window_close" = "0";
};
};
catppuccin.ghostty.enable = true;
programs.ghostty = {
enableFishIntegration = true;
installVimSyntax = true;
settings = {
};
};
};
};
}