summaryrefslogtreecommitdiff
path: root/devenv.nix
blob: 9cda53a67941a0fbb4d0c5e9f399292c037aca26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ inputs, ... }:
{
  imports = [ inputs.my-nixpkgs.devenvModules.personal ];
  languages = {
    nix.enable = true;
    texlive = {
      enable = true;
      latexmk.enable = true;
      packages = tl: { inherit (tl) scheme-full; };
    };
  };
}