peerix icon indicating copy to clipboard operation
peerix copied to clipboard

Peer2Peer Nix-Binary-Cache

Results 15 peerix issues
Sort by recently updated
recently updated
newest added

I'm seeing a problem between my computers using peerix, files in the store are not always found For example, peerix reported `INFO:root:Requesting kdyfy1hx3n95vifdi79zparg53r01ah3 from direct local network.` when looking for...

Following options are added - extraHosts enables the specification of hostnames/ips to specifically contact - disableBroadcast would avoid to use the broadcast addresses from the interfaces by default Those options...

I think these options should be called `services.peerix.publicKeys` and `services.peerix.publicKeyFiles`, since multiple public keys should usually be accepted, and it should be easy to change (I can try to make...

[nix-serve-ng](https://github.com/aristanetworks/nix-serve-ng) is a drop-in replacement for `nix-serve` that is advertised [as a lot faster](https://www.haskellforall.com/2022/09/nix-serve-ng-faster-more-reliable-drop.html) I think this could be an interesting option for peerix, and may solve the issues with...

If you run 3 peerix on your network and only have trusted keys on computer A to use peerix from computer B, if computer C is responding faster than B,...

I'm using peerix on a laptop that I often connect/disconnect from ethernet, so sometimes it uses its Wi-Fi IP address, sometimes the ethernet address. However, it seems remote peerix keep...

Do I need to set `publicKey`? config ```nix { services.peerix = { enable = true; openFirewall = true; privateKeyFile = "/home/bbigras/peerix/secret-key-file"; publicKeyFile = "/home/bbigras/peerix/public-key-file"; }; } ``` log ``` nov...

I've tried adding peerix to my current config: ``` jedha = nixpkgs.lib.nixosSystem { inherit system; pkgs = nixpkgsFinal; modules = [ self.inputs.sops-nix.nixosModules.sops self.inputs.peerix.nixosModules.peerix ]; } ``` but I get: ```...

I wrote a tutorial to setup Peerix with flakes https://dataswamp.org/~solene/2022-08-25-nixos-with-peerix.html Does this setup looks correct? We could use bits from my blog post to write the documentation in the README,...

Sometimes peerix/nix tries to request nar files from a host that's offline causing a big delay while nix times out the substitute. This adds a timeout on the socket connection...