diff options
| author | Akshay Nair <phenax5@gmail.com> | 2026-03-01 18:32:41 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2026-03-01 18:35:24 +0530 |
| commit | 76739904202a362ffaa3e9e2ab99a55889419744 (patch) | |
| tree | e70a4889bed8895fa8789dabb1fc5aecf19fcb69 /modules/tmux/default.nix | |
| parent | 241e40ad8023922be73213a518c9624f737de066 (diff) | |
| download | nixos-config-76739904202a362ffaa3e9e2ab99a55889419744.tar.gz nixos-config-76739904202a362ffaa3e9e2ab99a55889419744.zip | |
Tmux + kakoune package update
Diffstat (limited to 'modules/tmux/default.nix')
| -rw-r--r-- | modules/tmux/default.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/modules/tmux/default.nix b/modules/tmux/default.nix new file mode 100644 index 0000000..67b31cb --- /dev/null +++ b/modules/tmux/default.nix @@ -0,0 +1,10 @@ +{ lib, ... }: +{ + programs.tmux = { + enable = true; + terminal = "screen-256color"; # tmux-256color + escapeTime = 25; + shortcut = "q"; + extraConfig = lib.readFile ./tmux.conf; + }; +} |
