This commit is contained in:
despiegk 2024-01-13 17:24:22 +03:00
parent a66406521b
commit 31bffebdbb
Signed by: despiegk
GPG Key ID: 99E4E1492F73BC18
3 changed files with 40 additions and 36 deletions

3
.gitignore vendored
View File

@ -2,4 +2,5 @@
deluge_conf
bin/
code/
nuscripts
nuscripts
nuscripts/*

View File

@ -1,32 +1,31 @@
let
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-23.11";
pkgs = import nixpkgs { config = {}; overlays = []; };
in
pkgs.mkShell {
packages = with pkgs; [
git
nushell
mc
jq
# vscode-with-extensions
deluge
libtorrent-rasterbar
python311Packages.libtorrent-rasterbar
python311Full
python311Packages.ipython
python311Packages.ipdb
python311Packages.rq
rsync
# rustc
# dumptorrent
# udpt
# buildtorrent
];
# shellHook = ''
# echo "Nix shell environment is ready."
# hero_shell.sh
# '';
}
let
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-23.11";
pkgs = import nixpkgs { config = {}; overlays = []; };
in
pkgs.mkShell {
packages = with pkgs; [
git
nushell
mc
jq
deluge
libtorrent-rasterbar
python311Packages.libtorrent-rasterbar
python311Full
python311Packages.ipython
python311Packages.ipdb
python311Packages.rq
rsync
# rustc
# dumptorrent
# udpt
# buildtorrent
];
shellHook = ''
cd $BASE
git status
$BASE/hero_shell.sh
'';
}

View File

@ -1,9 +1,13 @@
#!/usr/bin/env bash
set -e
MYDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd "$MYDIR"
export BASE="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
cd "$BASE"
export NIXPKGS_ALLOW_UNFREE=1
mkdir -p $BASE/code
code $BASE/code
set -e
nix-shell