linuxware/programs/tmux/default.nix

17 lines
258 B
Nix
Raw Normal View History

2024-06-04 17:45:53 -03:00
{ pkgs, ... }:
{
programs.tmux = {
enable = true;
clock24 = true;
plugins = with pkgs.tmuxPlugins; [
{
plugin = catppuccin;
extraConfig = ''
set -g @catppuccin_flavour 'frappe'
'';
}
];
2024-06-04 17:45:53 -03:00
};
}