aboutsummaryrefslogtreecommitdiff
path: root/tmux.nix
diff options
context:
space:
mode:
authorAargh Rai <aargh.rai+git@gmail.com>2025-08-18 12:59:21 +0530
committerAargh Rai <aargh.rai+git@gmail.com>2025-08-18 12:59:21 +0530
commit8d144b97b06794f3f7006e236bd5b9debe0b7cf8 (patch)
treefc75dec7154c9cf0411138f038e11e1cb1f117ec /tmux.nix
parent3904ef4590764453816bde67a201782d360cd865 (diff)
tmux
Diffstat (limited to 'tmux.nix')
-rw-r--r--tmux.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/tmux.nix b/tmux.nix
new file mode 100644
index 0000000..f9ed249
--- /dev/null
+++ b/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
+ ];
+}