about summary refs log tree commit diff
path: root/shell.nix
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2020-03-27T10·47+0000
committerWilliam Carroll <wpcarro@gmail.com>2020-03-27T10·59+0000
commit6b224a9e314b6faedd25fc5361a5bb6ac8c3e0a3 (patch)
treeac2eb6daf0d73d4b98a032feac679f5b5840cdd9 /shell.nix
parent47a0b45f5f5620aa683f90186008526b8a4c6d68 (diff)
Drop support for lorri
Lorri does not cleanly integrate with my corporate device, which cannot run
NixOS. To expose dependencies to Emacs buffers, I will use nix-buffer.el, which
reads its values from dir-locals.nix. To easily expose dependencies from my
existing shell.nix files into dir-locals.nix, I wrote a Nix utility function.
Diffstat (limited to 'shell.nix')
-rw-r--r--shell.nix13
1 files changed, 0 insertions, 13 deletions
diff --git a/shell.nix b/shell.nix
deleted file mode 100644
index 674ae1da08b7..000000000000
--- a/shell.nix
+++ /dev/null
@@ -1,13 +0,0 @@
-{ 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";
-}