1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-10 02:36:54 +00:00
home-manager/tests/modules/programs/autojump/default-settings.nix

13 lines
224 B
Nix
Raw Normal View History

{
programs.autojump.enable = true;
test.stubs.autojump = {
buildScript = "mkdir -p $out/bin; touch $out/bin/autojump";
outPath = null;
};
nmt.script = ''
assertFileExists home-path/bin/autojump
'';
}