nix-config/home-manager/sajenim/viridian.nix
jasmine 2c286d65fb
refactor(viridian): simplify home-manager config and enable tmux status
Remove unused packages (weechat, nixvim) and enable tmux status bar for better session visibility on the server.
2025-10-08 10:21:16 +08:00

13 lines
186 B
Nix

{...}: {
imports = [
./global
];
programs.tmux = {
enable = true;
extraConfig = ''
set -g default-terminal "tmux-256color"
set -g status on
'';
};
}