2020-03-01 23:16:07 +01:00
|
|
|
{ ... }:
|
2020-01-23 17:30:39 +01:00
|
|
|
|
|
|
|
let
|
2020-03-01 23:16:07 +01:00
|
|
|
readTree = import <depot/nix/readTree> {} {
|
|
|
|
pkgs = import <nixpkgs> {};
|
|
|
|
depot = import <depot> {};
|
2020-02-23 23:29:32 +01:00
|
|
|
briefcase = import <briefcase> {};
|
2020-01-23 17:30:39 +01:00
|
|
|
};
|
2020-03-01 23:16:07 +01:00
|
|
|
in {
|
|
|
|
nixos = readTree ./nixos;
|
2020-03-04 20:11:47 +01:00
|
|
|
emacs = readTree ./emacs;
|
2020-03-01 23:16:07 +01:00
|
|
|
blog = readTree ./blog;
|
|
|
|
lisp = readTree ./lisp;
|
|
|
|
gopkgs = readTree ./gopkgs;
|
|
|
|
monzo_ynab = readTree ./monzo_ynab;
|
|
|
|
third_party = readTree ./third_party;
|
|
|
|
tools = readTree ./tools;
|
2020-01-23 17:30:39 +01:00
|
|
|
}
|