mirror of
https://github.com/Superredstone/nixos.git
synced 2026-03-08 04:38:06 +01:00
15 lines
230 B
Nix
15 lines
230 B
Nix
{ pkgs, config, ... }:
|
|
{
|
|
programs.tmux = {
|
|
enable = true;
|
|
escapeTime = 0;
|
|
extraConfig = ''
|
|
set-option -g mouse on
|
|
set -g @catppuccin_flavor 'mocha'
|
|
'';
|
|
plugins = with pkgs; [
|
|
tmuxPlugins.catppuccin
|
|
];
|
|
};
|
|
}
|