1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-05 04:43:28 +02:00
home-manager/tests/modules/programs/scmpuff/no-shell.nix

24 lines
387 B
Nix
Raw Normal View History

{ ... }:
{
programs = {
scmpuff = {
enable = true;
enableBashIntegration = false;
enableZshIntegration = false;
};
bash.enable = true;
zsh.enable = true;
};
2021-08-12 22:47:22 +02:00
test.stubs = {
zsh = { };
scmpuff = { };
};
nmt.script = ''
2023-10-01 12:17:06 +02:00
assertFileNotRegex home-files/.zshrc '@scmpuff@'
assertFileNotRegex home-files/.bashrc '@scmpuff@'
'';
}