summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlassulus <lass@aidsballs.de>2016-08-24 15:13:05 +0200
committerlassulus <lass@aidsballs.de>2016-08-24 15:13:05 +0200
commitcbc3d845ca8ee8290bf118a8c87084826e5b3100 (patch)
treefe00cc3914bf98cbcf455741d829fc4826eee240
parentf0f5430f87a3a14de2bab5de1e13aaefa4bcdf94 (diff)
add ./bin to path in env.nix
-rw-r--r--env.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/env.nix b/env.nix
index 1382ce5..ba68205 100644
--- a/env.nix
+++ b/env.nix
@@ -10,5 +10,8 @@ with import <nixpkgs> {}; {
mpv
];
SSL_CERT_FILE="/etc/ssl/certs/ca-bundle.crt";
+ shellHook = ''
+ PATH=$PATH:${./bin}
+ '';
};
}