aboutsummaryrefslogtreecommitdiff
path: root/tests/modules/programs/zsh/history-path-new-custom.nix
diff options
context:
space:
mode:
Diffstat (limited to 'tests/modules/programs/zsh/history-path-new-custom.nix')
-rw-r--r--tests/modules/programs/zsh/history-path-new-custom.nix7
1 files changed, 2 insertions, 5 deletions
diff --git a/tests/modules/programs/zsh/history-path-new-custom.nix b/tests/modules/programs/zsh/history-path-new-custom.nix
index 6a8c7372d34..0c052d6949e 100644
--- a/tests/modules/programs/zsh/history-path-new-custom.nix
+++ b/tests/modules/programs/zsh/history-path-new-custom.nix
@@ -10,11 +10,8 @@ with lib;
history.path = "$HOME/some/directory/zsh_history";
};
- nixpkgs.overlays = [
- (self: super: {
- zsh = pkgs.writeScriptBin "dummy-zsh" "";
- })
- ];
+ nixpkgs.overlays =
+ [ (self: super: { zsh = pkgs.writeScriptBin "dummy-zsh" ""; }) ];
nmt.script = ''
assertFileRegex home-files/.zshrc '^HISTFILE="$HOME/some/directory/zsh_history"$'