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:
parent
6dc89a2097
commit
2c286d65fb
1 changed files with 2 additions and 14 deletions
|
@ -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
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue