aboutsummaryrefslogtreecommitdiff
path: root/home-manager/tests/modules/programs/man/no-manpath.nix
blob: 1b8cfb40c6eb937506a7bb646a32df1ec13e6205 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ config, lib, pkgs, ... }:

with lib;

{
  config = {
    programs.man = { enable = true; };

    nmt.script = ''
      assertPathNotExists home-files/.manpath
    '';
  };
}