{ description = "Template for LaTeX"; inputs = { nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; flake-utils.url = "github:numtide/flake-utils"; report-temp.url = "github:kenryuS/report-temp"; }; outputs = { self, nixpkgs, flake-utils, report-temp }: flake-utils.lib.eachDefaultSystem (system: let pkgs = import nixpkgs { inherit system; config = {}; overlays = []; }; in { devShells.default = report-temp.devShells.${system}.latex; } ); }