From 8d144b97b06794f3f7006e236bd5b9debe0b7cf8 Mon Sep 17 00:00:00 2001 From: Aargh Rai Date: Mon, 18 Aug 2025 12:59:21 +0530 Subject: tmux --- configuration.nix | 1 + environment.nix | 1 - tmux.nix | 14 ++++++++++++++ 3 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 tmux.nix diff --git a/configuration.nix b/configuration.nix index 0dfa462..fe6eac0 100644 --- a/configuration.nix +++ b/configuration.nix @@ -10,6 +10,7 @@ ./environment.nix ./nvim.nix ./apps.nix + ./tmux.nix ]; diff --git a/environment.nix b/environment.nix index eccf315..54d4fc2 100644 --- a/environment.nix +++ b/environment.nix @@ -5,7 +5,6 @@ python311 zoxide starship - tmux cmake git-lfs inetutils 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 { 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 + ]; +} -- cgit v1.2.3