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

with lib;

{
  config = {
    programs.texlive.enable = true;

    nmt.script = ''
      assertFileExists home-path/bin/tex
    '';
  };
}