mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 10:49:44 +01:00
e150dd4a66
Fixes #526
13 lines
162 B
Nix
13 lines
162 B
Nix
{ config, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
programs.texlive.enable = true;
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-path/bin/tex
|
|
'';
|
|
};
|
|
}
|