bash: add missing 'ignoreboth' to historyControl

Reference: https://www.gnu.org/software/bash/manual/html_node/Bash-Variables.html#index-HISTCONTROL
This commit is contained in:
RoadRoller01 2024-05-12 23:33:36 +03:00 committed by Robert Helgesson
parent e8482a798f
commit 0cf552f39f
No known key found for this signature in database
GPG key ID: 96E745BD17AA17ED

View file

@ -67,8 +67,8 @@ in {
}; };
historyControl = mkOption { historyControl = mkOption {
type = type = types.listOf
types.listOf (types.enum [ "erasedups" "ignoredups" "ignorespace" ]); (types.enum [ "erasedups" "ignoredups" "ignorespace" "ignoreboth" ]);
default = [ ]; default = [ ];
description = "Controlling how commands are saved on the history list."; description = "Controlling how commands are saved on the history list.";
}; };