75fa0ae5af
GitOrigin-RevId: c3ab5ea047e6dc73df530948f7367455749d8906
20 lines
304 B
Nix
20 lines
304 B
Nix
{ ... }:
|
|
|
|
{
|
|
programs = {
|
|
scmpuff.enable = true;
|
|
zsh.enable = true;
|
|
};
|
|
|
|
test.stubs = {
|
|
zsh = { };
|
|
scmpuff = { };
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.zshrc
|
|
assertFileContains \
|
|
home-files/.zshrc \
|
|
'eval "$(@scmpuff@/bin/scmpuff init -s)"'
|
|
'';
|
|
}
|