Skip to content

Latest commit

 

History

History
executable file
·
13 lines (10 loc) · 287 Bytes

pkgs.md

File metadata and controls

executable file
·
13 lines (10 loc) · 287 Bytes

Custom packages

Load all custom packages as overlay.

{ pkgs, lib }:
  with lib; with builtins;
  genAttrs
    (filter (name: name != "default")
      (concatMap (match "(.*)\.nix") (attrNames (readDir ./.))))
    (pkg: pkgs.callPackage ./${pkg}.nix { })