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:
parent
e8482a798f
commit
0cf552f39f
|
@ -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.";
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue