2020-09-18 15:07:40 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
{
|
|
|
|
config = {
|
|
|
|
programs.autojump.enable = true;
|
|
|
|
|
2021-09-26 11:08:45 +02:00
|
|
|
test.stubs.autojump = {
|
|
|
|
buildScript = "mkdir -p $out/bin; touch $out/bin/autojump";
|
|
|
|
};
|
|
|
|
|
2020-09-18 15:07:40 +02:00
|
|
|
nmt.script = ''
|
|
|
|
assertFileExists home-path/bin/autojump
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|