Modularizing the system

This commit is contained in:
2024-09-04 07:50:50 +02:00
parent f8c3653e49
commit fb35600660
8 changed files with 65 additions and 33 deletions

14
home/tmux.nix Normal file
View 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
];
};
}