This repository has been archived on 2024-04-14. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-dotfiles/user/configs/tmux/default.nix

14 lines
139 B
Nix
Raw Normal View History

2023-05-21 01:35:32 +01:00
{
2023-10-08 10:51:15 +01:00
config,
pkgs,
...
}: {
2023-05-21 01:35:32 +01:00
programs.tmux = {
2023-07-01 19:47:43 +01:00
enable = true;
2024-01-30 17:51:06 +00:00
plugins = with pkgs; [
tmuxPlugins.sensible
];
2023-05-21 01:35:32 +01:00
};
}