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:
parent
124e59ecc7
commit
bc3ee49911
1 changed files with 2 additions and 3 deletions
|
@ -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 =
|
||||
|
|
Loading…
Add table
Reference in a new issue