fcc4259cdb
* ranger: stub tests * alacritty: stub tests * broot: stub tests * zsh: stub tests * vim-vint: stub tests
17 lines
316 B
Nix
17 lines
316 B
Nix
{ ... }:
|
|
|
|
{
|
|
imports = [ ./zsh-stubs.nix ];
|
|
|
|
config = {
|
|
home.stateVersion = "19.09";
|
|
programs.zsh = {
|
|
enable = true;
|
|
history.path = "some/directory/zsh_history";
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileRegex home-files/.zshrc '^HISTFILE="$HOME/some/directory/zsh_history"$'
|
|
'';
|
|
};
|
|
}
|