1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

fix(nix): Remove shellHook

Signed-off-by: Steffen Vogel <post@steffenvogel.de>
This commit is contained in:
Steffen Vogel 2024-11-03 10:53:51 +01:00
parent 124e59ecc7
commit bc3ee49911

View file

@ -94,7 +94,6 @@
system: system:
let let
pkgs = devPkgsFor system; pkgs = devPkgsFor system;
shellHook = ''[ -z "$PS1" ] || exec "$SHELL"'';
hardeningDisable = [ "all" ]; hardeningDisable = [ "all" ];
packages = with pkgs; [ packages = with pkgs; [
bashInteractive bashInteractive
@ -114,13 +113,13 @@
default = full; default = full;
full = pkgs.mkShell { full = pkgs.mkShell {
inherit shellHook hardeningDisable packages; inherit hardeningDisable packages;
name = "full"; name = "full";
inputsFrom = with pkgs; [ villas-node ]; inputsFrom = with pkgs; [ villas-node ];
}; };
python = pkgs.mkShell { python = pkgs.mkShell {
inherit shellHook hardeningDisable; inherit hardeningDisable;
name = "python"; name = "python";
inputsFrom = with pkgs; [ villas-node-python ]; inputsFrom = with pkgs; [ villas-node-python ];
packages = packages =