aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--configuration.nix1
-rw-r--r--environment.nix1
-rw-r--r--tmux.nix14
3 files changed, 15 insertions, 1 deletions
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
<home-manager/nixos>
];
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 <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
+ ];
+}