hm: add tmux

This commit is contained in:
Alexandre Cavalheiro 2024-06-04 17:45:53 -03:00
parent dc35841032
commit 9155efeaa3
Signed by: wizardlink
GPG key ID: A5767B54367CFBDF
2 changed files with 17 additions and 0 deletions

View file

@ -14,6 +14,7 @@
./programs/neovim ./programs/neovim
./programs/obs-studio.nix ./programs/obs-studio.nix
./programs/rofi ./programs/rofi
./programs/tmux
./programs/waybar.nix ./programs/waybar.nix
./programs/wezterm ./programs/wezterm
]; ];

16
programs/tmux/default.nix Normal file
View file

@ -0,0 +1,16 @@
{ pkgs, ... }:
{
programs.tmux = {
enable = true;
clock24 = true;
plugins = with pkgs.tmuxPlugins; [
{
plugin = catppuccin;
extraConfig = ''
set -g @catppuccin_flavour 'frappe'
'';
}
];
};
}