server/modules/tmux.nix
2026-03-28 18:26:22 +01:00

13 lines
235 B
Nix

{pkgs, ...}: {
home-manager.users.prever = {
programs.tmux = {
enable = true;
newSession = true;
shell = "${pkgs.fish}/bin/fish";
plugins = with pkgs.tmuxPlugins; [
gruvbox
];
};
};
}