e150dd4a66
Fixes #526
14 lines
162 B
Nix
14 lines
162 B
Nix
{ config, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
programs.texlive.enable = true;
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-path/bin/tex
|
|
'';
|
|
};
|
|
}
|