depot/third_party/home-manager/tests/modules/programs/autojump/default-settings.nix

18 lines
276 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
with lib;
{
config = {
programs.autojump.enable = true;
test.stubs.autojump = {
buildScript = "mkdir -p $out/bin; touch $out/bin/autojump";
};
nmt.script = ''
assertFileExists home-path/bin/autojump
'';
};
}