Skip to content

Commit

Permalink
style: treefmt didn't run for some reason?
Browse files Browse the repository at this point in the history
  • Loading branch information
huuff committed Oct 14, 2024
1 parent e99a32b commit b952888
Showing 1 changed file with 15 additions and 10 deletions.
25 changes: 15 additions & 10 deletions latex/flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,20 @@
};
};

outputs = { nixpkgs, utils, ... }:
utils.lib.eachDefaultSystem(system:
let
pkgs = import nixpkgs { inherit system; };
in {
outputs =
{ nixpkgs, utils, ... }:
utils.lib.eachDefaultSystem (
system:
let
pkgs = import nixpkgs { inherit system; };
in
{

devShell = with pkgs; mkShell {
buildInputs = [texlive.combined.scheme-full];
};
});
devShell =
with pkgs;
mkShell {
buildInputs = [ texlive.combined.scheme-full ];
};
}
);
}

0 comments on commit b952888

Please sign in to comment.