depot/third_party/home-manager/tests/modules/programs/man/no-manpath.nix

14 lines
176 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
with lib;
{
config = {
programs.man = { enable = true; };
nmt.script = ''
assertPathNotExists home-files/.manpath
'';
};
}