diff options
| -rw-r--r-- | configuration.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/configuration.nix b/configuration.nix index bfa2332..020e0ff 100644 --- a/configuration.nix +++ b/configuration.nix @@ -127,6 +127,18 @@ # browser programs.firefox.enable = true; + # tmux + programs.tmux = { + enable = true; + extraConfig = '' + set -g prefix C-a + bind-key l select-pane -L + bind-key h select-pane -R + bind-key k select-pane -U + bind-key j select-pane -D + ''; + }; + # fonts fonts.packages = with pkgs; [ (nerdfonts.override { |
