Explore >> Select a destination


You are here

tonyfinn.com
| | johns.codes
0.5 parsecs away

Travel
| | Reproducible dev environments and builds with Nix
| | stephank.nl
1.4 parsecs away

Travel
| | [AI summary] The article details a complex technical workflow for packaging private PHP projects with Nix flakes, specifically solving integration challenges with private Composer repositories.
| | ed-thomas.dev
1.2 parsecs away

Travel
| | Ed Thomas - Developer, writer, and technology enthusiast
| | fzakaria.com
8.3 parsecs away

Travel
| If you have used Nix flakes, you likely encountered something like the following. ?? std.url = "github:divnix/std"; std.inputs.devshell.follows = "devshell"; std.inputs.nixago.follows = "nixago"; std.inputs.nixpkgs.follows = "nixpkgs"; hive.url = "github:divnix/hive"; hive.inputs.colmena.follows = "colmena"; hive.inputs.disko.follows = "disko"; hive.inputs.nixos-generators.follows = "nixos-generators"; hive.inputs.nixpkgs.follows = "nixpkgs"; Why is this follows necessary? ?? It's in fact not necessary b...