summary refs log tree commit diff stats
path: root/sources.nix
blob: 8bcc5a4ff96fbf4017c2c68fcb847a10484668e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
let
  sources = import ./npins;
  pkgs = import sources.nixpkgs { };
  inherit (import ./lib { inherit pkgs; }) mkNixPath fromSources;

  allSources = {
    personal = ./packages;
    nixpkgs-overlays = ./overlays;
    private = ./private;
  } // (fromSources sources);
in
{
  sources = allSources;
  nixPath = mkNixPath allSources;
}