This commit is contained in:
Michael Thomson 2024-02-27 13:54:00 -05:00
parent 045b59feb2
commit 9cb3f571d6
No known key found for this signature in database
2 changed files with 15 additions and 0 deletions

View File

@ -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;

View File

@ -0,0 +1,13 @@
{ pkgs, config, ... }:
{
programs = {
tmux = {
enable = true;
shortcut = "Space";
mouse = true;
baseIndex = 1;
tmuxp.enable = true;
};
};
}