mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
17 lines
247 B
Nix
17 lines
247 B
Nix
{ ... }:
|
|
|
|
{
|
|
programs = {
|
|
scmpuff = {
|
|
enable = true;
|
|
enableBashIntegration = false;
|
|
};
|
|
bash.enable = true;
|
|
};
|
|
|
|
test.stubs.scmpuff = { };
|
|
|
|
nmt.script = ''
|
|
assertFileNotRegex home-files/.bashrc '@scmpuff@'
|
|
'';
|
|
}
|