2021-07-02 22:36:30 +00:00
|
|
|
{ pkgs, ... }: {
|
|
|
|
config = {
|
|
|
|
programs = {
|
|
|
|
scmpuff.enable = true;
|
|
|
|
zsh.enable = true;
|
|
|
|
};
|
|
|
|
|
2021-11-04 16:42:44 +00:00
|
|
|
test.stubs.zsh = { };
|
|
|
|
|
2021-07-02 22:36:30 +00:00
|
|
|
nmt.script = ''
|
|
|
|
assertFileExists home-files/.zshrc
|
|
|
|
assertFileContains \
|
|
|
|
home-files/.zshrc \
|
|
|
|
'eval "$(${pkgs.scmpuff}/bin/scmpuff init -s)"'
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|