Remove unused packages (weechat, nixvim) and enable tmux status bar for better session visibility on the server.
13 lines
186 B
Nix
13 lines
186 B
Nix
{...}: {
|
|
imports = [
|
|
./global
|
|
];
|
|
|
|
programs.tmux = {
|
|
enable = true;
|
|
extraConfig = ''
|
|
set -g default-terminal "tmux-256color"
|
|
set -g status on
|
|
'';
|
|
};
|
|
}
|