12 lines
197 B
Nix
12 lines
197 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
lib,
|
|
...
|
|
}: {
|
|
programs.tmux = {
|
|
enable = true;
|
|
shell = "${pkgs.fish}/bin/fish";
|
|
terminal = "screen-256color"; # Fix for apps not recognising full color
|
|
};
|
|
}
|