mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 02:39:45 +01:00
7529a2674a
Stub the scmpuff package. Also remove unnecessary `config` wrapping.
17 lines
259 B
Nix
17 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'
|
|
'';
|
|
}
|