mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 20:59:32 -08:00
17 lines
271 B
Nix
17 lines
271 B
Nix
|
{ config, pkgs, lib, ... }:
|
||
|
|
||
|
let
|
||
|
|
||
|
in
|
||
|
{
|
||
|
programs.tmux = {
|
||
|
enable = true;
|
||
|
terminal = "xterm-256color";
|
||
|
# Change this for faster resizing, but less precise
|
||
|
resizeAmount = 5;
|
||
|
keyMode = "vi";
|
||
|
mouse = true;
|
||
|
shell = "${pkgs.zsh}/bin/zsh";
|
||
|
};
|
||
|
}
|