9e0fdd3973
I'm not sure if this commit breaks everything in my monorepo. I think it will. Why am I doing this? Perhaps it's a bad idea. I don't fully understand how readTree works. My ignorance is costing me hours of time spent debugging. In an effort to better understand readTree, I'm removing the default values for my Nix expression parameters, which I believe have preventing errors from surfacing.
14 lines
445 B
Nix
14 lines
445 B
Nix
{ pkgs, ... }:
|
|
|
|
pkgs.mkShell rec {
|
|
buildInputs = [];
|
|
# TODO(wpcarro): How does pkgs.mkShell handle exported and non-exported
|
|
# variable definitions?
|
|
BRIEFCASE = builtins.toPath ~/briefcase;
|
|
DEPOT = builtins.toPath ~/depot;
|
|
NIXPKGS = builtins.toPath ~/nixpkgs;
|
|
NIX_PATH="nixpkgs=${NIXPKGS}:depot=${DEPOT}:briefcase=${BRIEFCASE}";
|
|
DESKTOP = "zeno.lon.corp.google.com";
|
|
LAPTOP = "seneca";
|
|
CLOUDTOP = "wpcarro.c.googlers.com";
|
|
}
|