10 lines
271 B
Nix
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" ];
|
|
}
|