updated max_hist default to 10,000 and added an option to remove the cap by setting it to -1

This commit is contained in:
2026-03-05 09:34:02 -05:00
parent 30ada66cab
commit 1efaf0e516
3 changed files with 11 additions and 10 deletions

View File

@@ -224,7 +224,7 @@ in
};
maxHistoryEntries = lib.mkOption {
type = lib.types.int;
default = 1000;
default = 10000;
description = "The maximum number of entries to keep in the command history";
};
interactiveComments = lib.mkOption {