de8033747c
- Move all module tests to their own directories. - Avoid duplication of `// import`.
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
|
|
'';
|
|
};
|
|
}
|