mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-07 13:33:12 +00:00
5 lines
168 B
Nix
5 lines
168 B
Nix
|
{ pkgs ? import ../../../.. { config = {}; overlays = []; } }:
|
||
|
pkgs.lib.mapAttrs
|
||
|
(k: v: pkgs.writeDirectReferencesToFile v)
|
||
|
(import ./sample.nix { inherit pkgs; })
|