![Thiago Kenji Okada](/assets/img/avatar_default.png)
* ranger: stub tests * alacritty: stub tests * broot: stub tests * zsh: stub tests * vim-vint: stub tests
14 lines
234 B
Nix
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"$'
|
|
'';
|
|
};
|
|
}
|