diff options
| -rw-r--r-- | module.nix | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -58,7 +58,11 @@ in in wrapper (config.texShell.scheme.withPackages config.texShell.extraPackages); }; - devShell = pkgs.mkShellNoCC { nativeBuildInputs = [ config.texShell.build.package ]; }; + devShell = mkOption { + type = types.package; + readOnly = true; + default = pkgs.mkShellNoCC { buildInputs = [ config.texShell.build.package ]; }; + }; }; }; }; |
