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

10 lines
276 B
Nix

{ lib, pkgs, ... }:
{
man-apropos = ./apropos.nix;
man-no-manpath = ./no-manpath.nix;
man-no-caches-without-package = ./no-caches-without-package.nix;
}
// lib.optionalAttrs pkgs.stdenv.hostPlatform.isDarwin {
man-no-package-on-darwin = ./no-package-on-darwin.nix;
}