Files
nix-stuff/hosts/nix-on-droid/flake-registry.nix
2025-08-22 13:27:12 -07:00

10 lines
271 B
Nix

# To make `nix run nixpkgs#hello` and such use the same nixpkgs used to build this, so that it doesn't take forever
{ inputs, ... }:
{
nix.registry.nixpkgs.to = {
type = "path";
path = inputs.nixpkgs.outPath;
};
nix.nixPath = [ "nixpkgs=flake:nixpkgs" ];
}