This commit is contained in:
despiegk 2024-01-13 16:41:26 +03:00
parent a01e9c9c19
commit d0144b72db
Signed by: despiegk
GPG Key ID: 99E4E1492F73BC18
4 changed files with 45 additions and 36 deletions

3
cleanup.sh Normal file
View File

@ -0,0 +1,3 @@
nix-env --delete-generations old
nix-store --gc
# nix-collect-garbage -d

View File

@ -102,4 +102,5 @@ cd ${BASE}
nuscript_get nuscript_get
nu --config nuscripts/config/config.nu --env-config nuscripts/config/env.nu -e 'source nuscripts/load.nu; $env.PATH = (paths_nix)' nu --config nuscripts/config/config.nu --env-config nuscripts/config/env.nu \
-e 'source nuscripts/load.nu; $env.PATH = (paths_nix); herotools install_crystal; herotools install_hero'

View File

@ -20,13 +20,16 @@ pkgs.mkShell {
go go
duf duf
gdu gdu
vscode-with-extensions
vscode-extensions.thenuprojectcontributors.vscode-nushell-lang
]; ];
# shellHook = ''
# echo "Nix shell environment is ready." # BIN_MC = "${pkgs.mc}/bin";
# hero_shell.sh
# ''; shellHook = ''
cd $BASE
git status
echo $BASE
$BASE/hero_shell.sh
'';
} }

View File

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