2.home-manager/tests/modules/programs/man/no-package-on-darwin.nix
2026-02-18 21:19:39 -06:00

12 lines
207 B
Nix

{
config = {
home.stateVersion = "26.05";
programs.man.enable = true;
nmt.script = ''
assertPathNotExists home-path/bin/man
assertPathNotExists home-files/.manpath
'';
};
}