aboutsummaryrefslogtreecommitdiff
path: root/tests/modules/programs/zsh/default.nix
diff options
context:
space:
mode:
authorNikita Uvarov <uv.nikita@gmail.com>2019-10-28 11:11:44 +0100
committerRobert Helgesson <robert@rycee.net>2019-11-05 23:04:06 +0100
commit450571056552c9311fcb2894328696b535265593 (patch)
tree1e998fe3d050c54d8caabb3f9df2a020edfd6c4f /tests/modules/programs/zsh/default.nix
parent05dabb7239254c0d9b2f314d7aa73923917bd1cd (diff)
zsh: fix history.path issues
- Default value is set to static '$HOME/.zsh_history' -- dotDir is not prepended anymore - $HOME is not prepended to the option value - Ensure history path directory exists Fixes #886, replaces #427.
Diffstat (limited to 'tests/modules/programs/zsh/default.nix')
-rw-r--r--tests/modules/programs/zsh/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/modules/programs/zsh/default.nix b/tests/modules/programs/zsh/default.nix
index da5dd5b55ed..37339598e35 100644
--- a/tests/modules/programs/zsh/default.nix
+++ b/tests/modules/programs/zsh/default.nix
@@ -1,3 +1,7 @@
{
zsh-session-variables = ./session-variables.nix;
+ zsh-history-path-new-default = ./history-path-new-default.nix;
+ zsh-history-path-new-custom = ./history-path-new-custom.nix;
+ zsh-history-path-old-default = ./history-path-old-default.nix;
+ zsh-history-path-old-custom = ./history-path-old-custom.nix;
}