hm: add tmux
This commit is contained in:
parent
dc35841032
commit
9155efeaa3
|
@ -14,6 +14,7 @@
|
|||
./programs/neovim
|
||||
./programs/obs-studio.nix
|
||||
./programs/rofi
|
||||
./programs/tmux
|
||||
./programs/waybar.nix
|
||||
./programs/wezterm
|
||||
];
|
||||
|
|
16
programs/tmux/default.nix
Normal file
16
programs/tmux/default.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.tmux = {
|
||||
enable = true;
|
||||
clock24 = true;
|
||||
plugins = with pkgs.tmuxPlugins; [
|
||||
{
|
||||
plugin = catppuccin;
|
||||
extraConfig = ''
|
||||
set -g @catppuccin_flavour 'frappe'
|
||||
'';
|
||||
}
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue