Merge pull request #107 from xecarlox94/master

modifying nix config
This commit is contained in:
Akilan Selvacoumar
2023-09-27 17:40:48 +01:00
committed by GitHub

View File

@@ -4,10 +4,19 @@ let
pkgs = [
nixpkgs.go
nixpkgs.tmux
nixpkgs.docker
nixpkgs.vim
];
in
nixpkgs.stdenv.mkDerivation {
name = "env";
buildInputs = pkgs;
pure-eval = true;
shellHook =
''
make
export P2PRC=$PWD
export PATH=$PWD:$PATH
'';
}