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:
|
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 =
|
||||||
|
|
Loading…
Add table
Reference in a new issue