home-manager/tests/modules/programs/zsh/history-path-new-default.nix
Thiago Kenji Okada fcc4259cdb
treewide: stub tests (#6275)
* ranger: stub tests

* alacritty: stub tests

* broot: stub tests

* zsh: stub tests

* vim-vint: stub tests
2025-01-08 16:24:04 +01:00

14 lines
234 B
Nix

{ ... }:
{
imports = [ ./zsh-stubs.nix ];
config = {
home.stateVersion = "20.03";
programs.zsh.enable = true;
nmt.script = ''
assertFileRegex home-files/.zshrc '^HISTFILE="$HOME/.zsh_history"$'
'';
};
}