8537920706
This also deprecates the `programs.bash.enableAutojump` option in favor of this module.
14 lines
174 B
Nix
14 lines
174 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
programs.autojump.enable = true;
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-path/bin/autojump
|
|
'';
|
|
};
|
|
}
|