summaryrefslogtreecommitdiff
path: root/pkgs
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2022-08-25 15:21:33 -0600
committerAlejandro Soto <alejandro@34project.org>2022-08-25 19:14:50 -0600
commit64e6052f5f24213141faba155b896c6beaef26f4 (patch)
tree7ae02eab6d26277ae14aef65120fd7808a01a0b7 /pkgs
parent6bf883a27dadb434aedfad9f6538a83ef02515c9 (diff)
home: switch old-style shenvs to hm-isolation
Diffstat (limited to '')
-rw-r--r--pkgs/default.nix11
1 files changed, 0 insertions, 11 deletions
diff --git a/pkgs/default.nix b/pkgs/default.nix
index 7280572..ae36807 100644
--- a/pkgs/default.nix
+++ b/pkgs/default.nix
@@ -5,17 +5,6 @@ with pkgs.lib; let
combined = pkgs // { inherit local; };
local = {
- shenvs = let
- build = name: { paths, enter ? null }: buildEnv {
- name = "shenv-${name}";
- paths = (optional (enter != null) (writeTextDir "lib/shenv/enter" enter))
- ++ paths;
- };
- in pkgs.lib.mapAttrs (name: shenv: build name (shenv combined)) (util.importAll {
- root = ../shenvs;
- exclude = [ "config" ];
- });
-
btclone = callPackage ./btclone {};
git-aliases = callPackage ./git-aliases.nix {};
mssql-tools = callPackage ./mssql-tools.nix {};