cfcd52ff70
GitOrigin-RevId: 70c5b268e10025c70823767f4fb49e240b40151d
19 lines
345 B
Nix
19 lines
345 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
home.stateVersion = "20.03";
|
|
programs.zsh = {
|
|
enable = true;
|
|
history.path = "$HOME/some/directory/zsh_history";
|
|
};
|
|
|
|
test.stubs.zsh = { };
|
|
|
|
nmt.script = ''
|
|
assertFileRegex home-files/.zshrc '^HISTFILE="$HOME/some/directory/zsh_history"$'
|
|
'';
|
|
};
|
|
}
|