Skip to content

Commit

Permalink
fix(rust): Comment out the empty nixConfig section
Browse files Browse the repository at this point in the history
Without meaningful entries in the extra-substituters, Nix tries to add an empty
string as a substituter, which is not intended.
  • Loading branch information
akirak committed Feb 11, 2025
1 parent 2e1a021 commit f8a6916
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions rust/flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,12 @@
};

# Add settings for your binary cache.
nixConfig =
{
};
# nixConfig = {
# extra-substituters = [
# ];
# extra-trusted-public-keys = [
# ];
# };

outputs =
inputs@{ nixpkgs, flake-parts, ... }:
Expand Down

0 comments on commit f8a6916

Please sign in to comment.