nixos/modules/common/shell.nix

13 lines
156 B
Nix

{ lib, config, ... }:
{
config.programs.zsh = {
enable = true;
histSize = 100000;
syntaxHighlighting = {
enable = true;
};
};
}