eb402bca74
Creating a derivation to abstract over the build process for learn.wpcarro.dev.
20 lines
533 B
Nix
20 lines
533 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;
|
|
learn = readTree ./learn;
|
|
blog = readTree ./blog;
|
|
lisp = readTree ./lisp;
|
|
gopkgs = readTree ./gopkgs;
|
|
monzo_ynab = readTree ./monzo_ynab;
|
|
third_party = readTree ./third_party;
|
|
tools = readTree ./tools;
|
|
}
|