1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-30 18:38:31 +02:00
home-manager/tests/modules/programs/autojump/default-settings.nix

14 lines
174 B
Nix
Raw Normal View History

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