mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
7529a2674a
Stub the scmpuff package. Also remove unnecessary `config` wrapping.
20 lines
280 B
Nix
20 lines
280 B
Nix
{ ... }:
|
|
|
|
{
|
|
programs = {
|
|
scmpuff = {
|
|
enable = true;
|
|
enableZshIntegration = false;
|
|
};
|
|
zsh.enable = true;
|
|
};
|
|
|
|
test.stubs = {
|
|
zsh = { };
|
|
scmpuff = { };
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileNotRegex home-files/.zshrc '@scmpuff@ init -s'
|
|
'';
|
|
}
|