1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-28 09:28:32 +02:00
home-manager/tests/modules/programs/autojump/default-settings.nix
Evan Stoll 8537920706
autojump: add module
This also deprecates the `programs.bash.enableAutojump` option in
favor of this module.
2020-10-08 23:50:43 +02:00

14 lines
174 B
Nix

{ config, lib, pkgs, ... }:
with lib;
{
config = {
programs.autojump.enable = true;
nmt.script = ''
assertFileExists home-path/bin/autojump
'';
};
}