ooknet/home/ooks/base/shell/cli/tmux.nix
2023-12-06 15:37:39 +13:00

7 lines
119 B
Nix

{ pkgs, config, ... }:
{
programs.tmux = {
enable = true;
extraConfig = "set -g status-position top";
};
}