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,18 @@
{
flake.modules.nixos.server =
{ ... }:
{
programs.tmux = {
enable = true;
clock24 = true;
newSession = true;
keyMode = "vi";
terminal = "ghostty";
extraConfig = ''
set -g mouse on
'';
};
};
}