7529a2674a
Stub the scmpuff package. Also remove unnecessary `config` wrapping.
18 lines
259 B
Nix
18 lines
259 B
Nix
{ ... }:
|
|
|
|
{
|
|
programs = {
|
|
scmpuff = {
|
|
enable = true;
|
|
enableBashIntegration = false;
|
|
};
|
|
bash.enable = true;
|
|
};
|
|
|
|
test.stubs.scmpuff = { };
|
|
|
|
nmt.script = ''
|
|
assertFileNotRegex home-files/.bashrc '@scmpuff@/bin/scmpuff'
|
|
'';
|
|
}
|