We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea17c88 commit e99e959Copy full SHA for e99e959
1 file changed
flake.nix
@@ -214,11 +214,13 @@
214
inherit lib;
215
216
overlays = import ./overlays { inherit inputs; };
217
- formatter = forEachSystem (pkgs: treefmtEval.${pkgs.system}.config.build.wrapper);
+ formatter = forEachSystem (
218
+ pkgs: treefmtEval.${pkgs.stdenv.hostPlatform.system}.config.build.wrapper
219
+ );
220
221
checks = forEachSystem (pkgs: {
222
formatting = treefmtEval.${pkgs.system}.config.build.check self;
- git-hooks-check = inputs.git-hooks-nix.lib.${pkgs.system}.run {
223
+ git-hooks-check = inputs.git-hooks-nix.lib.${pkgs.stdenv.hostPlatform.system}.run {
224
src = ./.;
225
imports = [
226
(import ./git-hooks.nix { inherit pkgs; })
0 commit comments