f4fea2346e
Nest the sandbox work under ./website.
19 lines
502 B
Nix
19 lines
502 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;
|
|
website = readTree ./website;
|
|
lisp = readTree ./lisp;
|
|
gopkgs = readTree ./gopkgs;
|
|
monzo_ynab = readTree ./monzo_ynab;
|
|
third_party = readTree ./third_party;
|
|
tools = readTree ./tools;
|
|
}
|