Skip to content

Commit

Permalink
⬆️ Remove editor utils from the flake.nix
Browse files Browse the repository at this point in the history
  • Loading branch information
BattleCh1cken committed May 19, 2024
1 parent f4e6c0d commit 4974acd
Showing 1 changed file with 9 additions and 11 deletions.
20 changes: 9 additions & 11 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
mdbook-typst-doc = pkgs.rustPlatform.buildRustPackage rec {
mdbook-typst-doc = pkgs.rustPlatform.buildRustPackage rec {
pname = "mdbook-typst-doc";
version = "0.1.2";

Expand All @@ -27,21 +27,19 @@
rev = version;
sha256 = "sha256-GulEn/MSiE8su0k+VL3uNslYCbjLJnmW6rMOdTQSMUw=";
};

cargoHash = "sha256-KD6J8dTIPaII4ISh0PW6u1EMj5JVEDYcXuZ75ycbSys=";
};
in
{
devShell = pkgs.mkShell {
packages = [
pkgs.typst
pkgs.typst-lsp
typstfmt.packages.${system}.default
pkgs.act
pkgs.nodePackages_latest.prettier
pkgs.just
pkgs.mdbook
pkgs.mdbook-admonish
packages = with pkgs; [
typst

nodePackages_latest.prettier
just
mdbook
mdbook-admonish
mdbook-typst-doc
];
};
Expand Down

0 comments on commit 4974acd

Please sign in to comment.