2023-02-17 01:43:18 +01:00
|
|
|
# If pkgs is not defined, instanciate nixpkgs from locked commit
|
|
|
|
{ pkgs ? (import ../nixpkgs.nix) { }
|
2023-10-16 20:42:10 +02:00
|
|
|
, inputs
|
|
|
|
, outputs
|
2023-02-17 01:43:18 +01:00
|
|
|
, ...
|
|
|
|
}: {
|
2023-10-16 20:42:10 +02:00
|
|
|
default = import ./default { inherit pkgs inputs outputs; };
|
2023-02-17 01:43:18 +01:00
|
|
|
}
|