···19192020## Binary Cache
21212222-You must enable the [garnix binary cache](https://garnix.io/docs/caching) on all
2323-nodes in your wire hive, otherwise they will not accept the wire key agent and
2424-you will be compiling everything from source.
2222+You should enable the [garnix binary cache](https://garnix.io/docs/caching).
25232624## Installation through flakes
2725
-2
doc/guides/migrate.md
···1919atleast that was the intention when writing it!). There are a few changes you
2020should know:
21212222-- Wire pushes a real binary file to apply keys. You'll need to _atleast_ add garnix's
2323- public key for your remote server otherwise it will refuse the binary.
2422- [You don't have to use a root user](/guides/non-root-user.html)
2523- `apply-local` does not exist, `apply` will apply locally when appropriate
2624- [Many options have been aliased to nicer names](/reference/module.html)
+1-1
doc/snippets/guides/installation/flake.nix
···1818 forAllSystems = nixpkgs.lib.genAttrs (import systems);
1919 in {
2020 wire = wire.makeHive {
2121- nixpkgs = import nixpkgs {localSystem = "x86_64-linux";};
2121+ meta.nixpkgs = import nixpkgs {localSystem = "x86_64-linux";};
22222323 # Continue to next How-To guide to fill this section
2424 };