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.
This commit is contained in:
♥ Minnie ♥ 2025-10-08 10:21:16 +08:00
parent 6dc89a2097
commit 2c286d65fb
Signed by: jasmine
GPG key ID: 8563E358D4E8040E

View file

@ -1,25 +1,13 @@
{ {...}: {
inputs,
pkgs,
...
}: {
imports = [ imports = [
./global ./global
]; ];
home.packages = with pkgs;
[
weechat
]
++ [
inputs.nixvim.packages.${pkgs.system}.default
];
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 off set -g status on
''; '';
}; };
} }