mirror of
https://github.com/Superredstone/nixos.git
synced 2026-03-07 20:28:08 +01:00
Modularizing the system
This commit is contained in:
14
home/tmux.nix
Normal file
14
home/tmux.nix
Normal file
@@ -0,0 +1,14 @@
|
||||
{ pkgs, config, ... }:
|
||||
{
|
||||
programs.tmux = {
|
||||
enable = true;
|
||||
escapeTime = 0;
|
||||
extraConfig = ''
|
||||
set-option -g mouse on
|
||||
set -g @catppuccin_flavor 'mocha'
|
||||
'';
|
||||
plugins = with pkgs; [
|
||||
tmuxPlugins.catppuccin
|
||||
];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user