Skip to content

Commit

Permalink
bash: add missing 'ignoreboth' to historyControl
Browse files Browse the repository at this point in the history
  • Loading branch information
RoadRoller01 authored and rycee committed May 27, 2024
1 parent e8482a7 commit 0cf552f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/programs/bash.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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.";
};
Expand Down

0 comments on commit 0cf552f

Please sign in to comment.