summary refs log tree commit diff
path: root/pkgs/build-support
diff options
context:
space:
mode:
authorAtemu <atemu.main@gmail.com>2023-09-16 21:09:24 +0200
committerGitHub <noreply@github.com>2023-09-16 21:09:24 +0200
commit88a0ff46e5cbfa0586c67cc0f0cb70df3f01daec (patch)
treedf4d88afe98a94b59d1861f3e49623fab801cdd0 /pkgs/build-support
parentd1c98f3490d71feb05e2ff4b07192e9c16fe48c7 (diff)
parentc945723356c17f0570217dedefac645721d6fb70 (diff)
downloadnixpkgs-88a0ff46e5cbfa0586c67cc0f0cb70df3f01daec.tar
nixpkgs-88a0ff46e5cbfa0586c67cc0f0cb70df3f01daec.tar.gz
nixpkgs-88a0ff46e5cbfa0586c67cc0f0cb70df3f01daec.tar.bz2
nixpkgs-88a0ff46e5cbfa0586c67cc0f0cb70df3f01daec.tar.lz
nixpkgs-88a0ff46e5cbfa0586c67cc0f0cb70df3f01daec.tar.xz
nixpkgs-88a0ff46e5cbfa0586c67cc0f0cb70df3f01daec.tar.zst
nixpkgs-88a0ff46e5cbfa0586c67cc0f0cb70df3f01daec.zip
Merge pull request #253982 from rnhmjoj/pr-fhs
buildFHSEnv: disable security features by default
Diffstat (limited to 'pkgs/build-support')
-rw-r--r--pkgs/build-support/build-fhsenv-bubblewrap/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/build-support/build-fhsenv-bubblewrap/default.nix b/pkgs/build-support/build-fhsenv-bubblewrap/default.nix
index 6c9b71624c2..5e8894d7cb3 100644
--- a/pkgs/build-support/build-fhsenv-bubblewrap/default.nix
+++ b/pkgs/build-support/build-fhsenv-bubblewrap/default.nix
@@ -17,12 +17,12 @@
 , meta ? {}
 , passthru ? {}
 , extraBwrapArgs ? []
-, unshareUser ? true
-, unshareIpc ? true
-, unsharePid ? true
+, unshareUser ? false
+, unshareIpc ? false
+, unsharePid ? false
 , unshareNet ? false
-, unshareUts ? true
-, unshareCgroup ? true
+, unshareUts ? false
+, unshareCgroup ? false
 , dieWithParent ? true
 , ...
 } @ args: