texlive: always require at least one extra package

Fixes #526
This commit is contained in:
Robert Helgesson 2019-01-09 02:09:23 +01:00
parent b3d73e0aff
commit e150dd4a66
No known key found for this signature in database
GPG key ID: 36BDAA14C2797E89
3 changed files with 28 additions and 3 deletions

View file

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