tvl-depot/default.nix
William Carroll 1d5ab45303 Move learn to website/learn
Nest the learn directory in the website directory.
2020-03-20 00:47:21 +00:00

20 lines
538 B
Nix

{ ... }:
let
readTree = import <depot/nix/readTree> {} {
pkgs = import <nixpkgs> {};
depot = import <depot> {};
briefcase = import <briefcase> {};
};
in {
nixos = readTree ./nixos;
utils = readTree ./utils;
emacs = readTree ./emacs;
sandbox = readTree ./sandbox;
website = readTree ./website;
lisp = readTree ./lisp;
gopkgs = readTree ./gopkgs;
monzo_ynab = readTree ./monzo_ynab;
third_party = readTree ./third_party;
tools = readTree ./tools;
}