diff --git a/hosts/macbook/home.nix b/hosts/macbook/home.nix index 6d022a8..f9d0069 100644 --- a/hosts/macbook/home.nix +++ b/hosts/macbook/home.nix @@ -5,6 +5,7 @@ ../../modules/home-manager/neovim ../../modules/home-manager/wezterm ../../modules/home-manager/zsh + ../../modules/home-manager/tmux ]; home.username = "mthomson"; home.homeDirectory = "/Users/mthomson"; @@ -14,6 +15,7 @@ btop spotify-player tmuxifier + neofetch ]; programs.home-manager.enable = true; diff --git a/modules/home-manager/tmux/default.nix b/modules/home-manager/tmux/default.nix new file mode 100644 index 0000000..25f4190 --- /dev/null +++ b/modules/home-manager/tmux/default.nix @@ -0,0 +1,13 @@ +{ pkgs, config, ... }: + +{ + programs = { + tmux = { + enable = true; + shortcut = "Space"; + mouse = true; + baseIndex = 1; + tmuxp.enable = true; + }; + }; +}