/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

xeiaso.net
| | stephank.nl
1.2 parsecs away

Travel
| | [AI summary] The author shares a technical guide on migrating personal NixOS configurations to use flakes, detailing methods for remote deployment, managing automatic upgrades on different systems, and setting up a private Git hosting server.
| | blog.janissary.xyz
0.9 parsecs away

Travel
| |
| | blog.dbalan.in
1.6 parsecs away

Travel
| | [AI summary] A technical tutorial explaining how to declaratively configure a macOS system using Nix, Nix-darwin, and Home Manager, covering bootstrapping the system and managing packages and user environments.
| | fzakaria.com
14.6 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...