34 lines
675 B
Nix
34 lines
675 B
Nix
let
|
|
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-23.11";
|
|
pkgs = import nixpkgs { config = {}; overlays = []; };
|
|
in
|
|
|
|
pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
git
|
|
nushellFull
|
|
mc
|
|
jq
|
|
|
|
# libtorrent-rasterbar
|
|
# python311Packages.libtorrent-rasterbar
|
|
python311Full
|
|
python311Packages.ipython
|
|
python311Packages.ipdb
|
|
python311Packages.rq
|
|
rsync
|
|
rustc
|
|
go
|
|
duf
|
|
gdu
|
|
vscode-with-extensions
|
|
vscode-extensions.thenuprojectcontributors.vscode-nushell-lang
|
|
|
|
];
|
|
# shellHook = ''
|
|
# echo "Nix shell environment is ready."
|
|
# hero_shell.sh
|
|
# '';
|
|
}
|
|
|