aboutsummaryrefslogtreecommitdiff
path: root/nixos/tmux.nix
diff options
context:
space:
mode:
authorAargh Rai <aargh.rai+git@gmail.com>2025-09-07 17:53:01 +0530
committerAargh Rai <aargh.rai+git@gmail.com>2025-09-07 17:53:01 +0530
commit656d9a4432fa611491a349a3f83fdfe363e2fe3c (patch)
treec06adfd297063c3e9e6166e850d3cc7508bee2ac /nixos/tmux.nix
parentca771be6a3ce9b76b6465ac3bac84bc2927c997f (diff)
moving things to a folder
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
+ ];
+}