mirror of
https://github.com/nix-community/home-manager
synced 2024-11-17 08:39:44 +01:00
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
1 changed files with 2 additions and 2 deletions
|
@ -67,8 +67,8 @@ in {
|
|||
};
|
||||
|
||||
historyControl = mkOption {
|
||||
type =
|
||||
types.listOf (types.enum [ "erasedups" "ignoredups" "ignorespace" ]);
|
||||
type = types.listOf
|
||||
(types.enum [ "erasedups" "ignoredups" "ignorespace" "ignoreboth" ]);
|
||||
default = [ ];
|
||||
description = "Controlling how commands are saved on the history list.";
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue