1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-29 01:48:31 +02:00
home-manager/tests/modules/programs/scmpuff/no-bash.nix
2021-05-18 00:47:40 +02:00

16 lines
279 B
Nix

{ pkgs, ... }: {
config = {
programs = {
scmpuff = {
enable = true;
enableBashIntegration = false;
};
bash.enable = true;
};
nmt.script = ''
assertFileNotRegex home-files/.bashrc '${pkgs.scmpuff}/bin/scmpuff'
'';
};
}