feat(viridian): add CLI features and disable tmux status bar

- Import CLI feature configuration (includes zsh setup)
- Disable tmux status bar for cleaner interface
This commit is contained in:
♥ Minnie ♥ 2025-12-20 19:33:19 +08:00
parent 61e348a83f
commit efbbfecb2c
Signed by: jasmine
GPG key ID: 8563E358D4E8040E

View file

@ -1,13 +1,14 @@
{...}: { {...}: {
imports = [ imports = [
./global ./global
./features/cli
]; ];
programs.tmux = { programs.tmux = {
enable = true; enable = true;
extraConfig = '' extraConfig = ''
set -g default-terminal "tmux-256color" set -g default-terminal "tmux-256color"
set -g status on set -g status off
''; '';
}; };
} }