1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-02 21:13:33 +02:00
home-manager/tests/modules/programs/texlive-minimal.nix
2019-01-09 02:09:23 +01:00

14 lines
162 B
Nix

{ config, lib, ... }:
with lib;
{
config = {
programs.texlive.enable = true;
nmt.script = ''
assertFileExists home-path/bin/tex
'';
};
}