mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
20 lines
323 B
Nix
20 lines
323 B
Nix
{ ... }:
|
|
|
|
{
|
|
programs = {
|
|
atuin.enable = true;
|
|
zsh.enable = true;
|
|
};
|
|
|
|
test.stubs = {
|
|
atuin = { name = "atuin"; };
|
|
bash-preexec = { };
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.zshrc
|
|
assertFileContains \
|
|
home-files/.zshrc \
|
|
'eval "$(@atuin@/bin/atuin init zsh )"'
|
|
'';
|
|
}
|