21 lines
344 B
Nix
21 lines
344 B
Nix
{ ... }:
|
|
|
|
{
|
|
programs = {
|
|
fish.enable = true;
|
|
vim = {
|
|
enable = true;
|
|
defaultEditor = true;
|
|
};
|
|
tmux = {
|
|
enable = true;
|
|
terminal = "screen-256color";
|
|
shortcut = "a";
|
|
plugins = with pkgs.tmuxPlugins; [];
|
|
newSession = true;
|
|
historyLimit = 10000;
|
|
clock24 = true;
|
|
};
|
|
};
|
|
}
|
|
|