18 lines
287 B
Nix
18 lines
287 B
Nix
{
|
|
flake.modules.nixos.server =
|
|
{ ... }:
|
|
{
|
|
programs.tmux = {
|
|
enable = true;
|
|
|
|
clock24 = true;
|
|
newSession = true;
|
|
keyMode = "vi";
|
|
terminal = "ghostty";
|
|
extraConfig = ''
|
|
set -g mouse on
|
|
'';
|
|
};
|
|
|
|
};
|
|
}
|