Compare commits

..

No commits in common. "4a1eb8d3f9c6c9297e50ce77301cba59af846130" and "3139bab32f046e8f43e4c263d05bbc91b4bebbe3" have entirely different histories.

View file

@ -24,19 +24,16 @@
packages = with pkgs; [ packages = with pkgs; [
corepack_latest corepack_latest
nodejs nodejs
cargo
clippy
]; ];
}; };
} }
); );
packages = forSystems ( formatter = forSystems (
system: system:
let let
pkgs = pkgs' system; pkgs = pkgs' system;
in in
{ pkgs.treefmt.withConfig {
fmt = pkgs.treefmt.withConfig {
runtimeInputs = with pkgs; [ runtimeInputs = with pkgs; [
nixfmt-rfc-style nixfmt-rfc-style
nodePackages.prettier nodePackages.prettier
@ -78,15 +75,7 @@
}; };
}; };
}; };
};
} }
); );
formatter = forSystems (
system:
let
pkgs = pkgs' system;
in
self.outputs.packages.${system}.fmt
);
}; };
} }