1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-05 12:53:27 +02:00
home-manager/tests/modules/programs/scmpuff/zsh.nix

21 lines
313 B
Nix
Raw Normal View History

{ ... }:
{
programs = {
scmpuff.enable = true;
zsh.enable = true;
};
2021-08-12 22:47:22 +02:00
test.stubs = {
zsh = { };
scmpuff = { };
};
nmt.script = ''
assertFileExists home-files/.zshrc
assertFileContains \
home-files/.zshrc \
2023-10-01 12:17:06 +02:00
'eval "$(@scmpuff@/bin/scmpuff init --shell=zsh)"'
'';
}