rix101/shells/default.nix

7 lines
163 B
Nix
Raw Normal View History

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