aboutsummaryrefslogtreecommitdiff
path: root/nixos/tmux.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/tmux.nix')
-rw-r--r--nixos/tmux.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/nixos/tmux.nix b/nixos/tmux.nix
new file mode 100644
index 0000000..f9ed249
--- /dev/null
+++ b/nixos/tmux.nix
@@ -0,0 +1,14 @@
+{ config, pkgs, ... }:
+# let unstable = import <nixos-unstable> { config.allowUnfree = true; };
+{
+ programs.tmux.enable = true;
+ programs.tmux.plugins = with pkgs.tmuxPlugins; [
+ sensible
+ vim-tmux-navigator
+ tmux-which-key
+ tmux-powerline
+ tmux-fzf
+ gruvbox
+ yank
+ ];
+}