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