nixos/modules/common/shell.nix

13 lines
156 B
Nix
Raw Normal View History

2022-10-22 22:18:32 +01:00
{ lib, config, ... }:
{
config.programs.zsh = {
enable = true;
histSize = 100000;
syntaxHighlighting = {
enable = true;
};
};
}