1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-09 18:26:54 +00:00
home-manager/tests/modules/programs/scmpuff/no-zsh.nix

14 lines
213 B
Nix
Raw Normal View History

{
programs = {
scmpuff = {
enable = true;
enableZshIntegration = false;
};
zsh.enable = true;
};
2021-08-12 22:47:22 +02:00
nmt.script = ''
assertFileNotRegex home-files/.zshrc '@scmpuff@ init -s'
'';
}