diff options
-rw-r--r-- | home.nix | 6 | ||||
-rw-r--r-- | tasks/default.nix | 4 |
2 files changed, 6 insertions, 4 deletions
@@ -81,8 +81,10 @@ in { }; }; - programs.direnv.enable = true; - programs.direnv.enableNixDirenvIntegration = true; + programs.direnv = { + enable = true; + enableNixDirenvIntegration = true; + }; xdg.mimeApps.enable = true; } diff --git a/tasks/default.nix b/tasks/default.nix index 7de01e0..2100bee 100644 --- a/tasks/default.nix +++ b/tasks/default.nix @@ -51,11 +51,11 @@ in { }; latex_shell = { - description = "Complete TeX Live shell environment"; + description = "Generic LaTeX shell environment"; directory = "~/"; type = "environment"; environment = mkShellDerivation "latex-env" (with pkgs; [ - texlive.combined.scheme-full + tectonic ]); }; |