tmux: setup for servers
This commit is contained in:
parent
5ce026332c
commit
e515aae340
6 changed files with 70 additions and 60 deletions
37
modules/base/home/terminal.nix
Normal file
37
modules/base/home/terminal.nix
Normal 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 = {
|
||||
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue