about summary refs log tree commit diff stats
path: root/modules/default.nix
blob: a3bc173536985587b411d6cca160e374f77df9e9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# NOTE: This file **must** not depend on `pkgs`. This is because `pkgs` is defined in a
# module imported by it, and thus would require infinite recursion.  <2024-10-18>
{...}: let
  files = import ./by-name-overlay.nix {
    baseDirectory =
      ./by-name;
  };
in {
  imports = files;
}