7 lines
163 B
Nix
7 lines
163 B
Nix
|
# If pkgs is not defined, instanciate nixpkgs from locked commit
|
||
|
{ pkgs ? (import ../nixpkgs.nix) { }
|
||
|
, ...
|
||
|
}: {
|
||
|
default = import ./default { inherit pkgs; };
|
||
|
}
|