crystaldev/shell.nix

34 lines
675 B
Nix
Raw Normal View History

2024-01-13 11:42:36 +00:00
let
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-23.11";
pkgs = import nixpkgs { config = {}; overlays = []; };
in
pkgs.mkShell {
packages = with pkgs; [
git
2024-01-13 12:05:37 +00:00
nushellFull
2024-01-13 11:42:36 +00:00
mc
jq
2024-01-13 12:05:37 +00:00
2024-01-13 11:42:36 +00:00
# libtorrent-rasterbar
# python311Packages.libtorrent-rasterbar
python311Full
python311Packages.ipython
python311Packages.ipdb
python311Packages.rq
rsync
rustc
go
2024-01-13 12:05:37 +00:00
duf
gdu
vscode-with-extensions
vscode-extensions.thenuprojectcontributors.vscode-nushell-lang
2024-01-13 11:42:36 +00:00
];
# shellHook = ''
# echo "Nix shell environment is ready."
# hero_shell.sh
# '';
}