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