adding some files

This commit is contained in:
talksik
2023-07-28 09:29:32 -07:00
parent c779767948
commit fbdb849c67
3 changed files with 207 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
{ pkgs ? import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/06278c77b5d162e62df170fec307e83f1812d94b.tar.gz") {} }:
pkgs.mkShell {
buildInputs = [
pkgs.which
pkgs.htop
pkgs.zlib
pkgs.git
pkgs.gh
pkgs.curl
pkgs.python39
pkgs.podman
pkgs.tmux
pkgs.go
pkgs.postgresql
pkgs.neovim
pkgs.ripgrep
pkgs.nodejs
pkgs.cmake
pkgs.rustc
pkgs.cargo
pkgs.rustup
];
shellHook = ''
echo hello
'';
MY_ENVIRONMENT_VARIABLE = "world";
}