mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
23 lines
387 B
Nix
23 lines
387 B
Nix
{ ... }:
|
|
|
|
{
|
|
programs = {
|
|
scmpuff = {
|
|
enable = true;
|
|
enableBashIntegration = false;
|
|
enableZshIntegration = false;
|
|
};
|
|
bash.enable = true;
|
|
zsh.enable = true;
|
|
};
|
|
|
|
test.stubs = {
|
|
zsh = { };
|
|
scmpuff = { };
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileNotRegex home-files/.zshrc '@scmpuff@'
|
|
assertFileNotRegex home-files/.bashrc '@scmpuff@'
|
|
'';
|
|
}
|