13 lines
294 B
Nix
13 lines
294 B
Nix
{ config, lib, ... }:
|
|
{
|
|
home.sessionVariables.SHELL = "zsh";
|
|
programs.zsh = {
|
|
enable = true;
|
|
enableVteIntegration = true;
|
|
syntaxHighlighting.enable = true;
|
|
history.share = true;
|
|
history.size = 10000;
|
|
history.ignoreDups = true;
|
|
history.ignoreSpace = true;
|
|
};
|
|
}
|