28 lines
715 B
Nix
28 lines
715 B
Nix
{config, lib, pkgs, ...} :
|
|
with lib;
|
|
{
|
|
programs = mkIf ( !config.home.isolation.active ) {
|
|
kitty = {
|
|
enable = true;
|
|
extraConfig = import ./kitty.conf.nix;
|
|
};
|
|
|
|
tmux = {
|
|
enable = true;
|
|
aggressiveResize = true;
|
|
clock24 = true;
|
|
escapeTime = 10;
|
|
terminal = "xterm-256color";
|
|
keyMode = "emacs";
|
|
|
|
extraConfig = ''
|
|
set -g mouse on
|
|
set -ga update-environment " LIFT_PID"
|
|
set -g set-titles on
|
|
set -g renumber-windows on
|
|
set -sa terminal-overrides ',xterm-termite:RGB'
|
|
set -g status-right "#{?window_bigger,[#{window_offset_x}#,#{window_offset_y}] ,} %H:%M %d-%b-%y"
|
|
'';
|
|
};
|
|
};
|
|
} |