about summary refs log tree commit diff
path: root/shell.nix
blob: f3978bd69e1be2fee7d3ee32242f87b22cba08c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ 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";
}