buildFHSUserEnvBubblewrap: add dieWithParent option, and /etc/nix
Allows for processes which fork to not be immediately killed when the parent process dies.
This commit is contained in:
parent
4518794ee5
commit
73a0b6c826
@ -14,6 +14,7 @@ args @ {
|
|||||||
, unshareNet ? false
|
, unshareNet ? false
|
||||||
, unshareUts ? true
|
, unshareUts ? true
|
||||||
, unshareCgroup ? true
|
, unshareCgroup ? true
|
||||||
|
, dieWithParent ? true
|
||||||
, ...
|
, ...
|
||||||
}:
|
}:
|
||||||
|
|
||||||
@ -22,7 +23,7 @@ let
|
|||||||
buildFHSEnv = callPackage ./env.nix { };
|
buildFHSEnv = callPackage ./env.nix { };
|
||||||
|
|
||||||
env = buildFHSEnv (removeAttrs args [
|
env = buildFHSEnv (removeAttrs args [
|
||||||
"runScript" "extraInstallCommands" "meta" "passthru"
|
"runScript" "extraInstallCommands" "meta" "passthru" "dieWithParent"
|
||||||
"unshareUser" "unshareCgroup" "unshareUts" "unshareNet" "unsharePid" "unshareIpc"
|
"unshareUser" "unshareCgroup" "unshareUts" "unshareNet" "unsharePid" "unshareIpc"
|
||||||
]);
|
]);
|
||||||
|
|
||||||
@ -30,6 +31,13 @@ let
|
|||||||
files = [
|
files = [
|
||||||
# NixOS Compatibility
|
# NixOS Compatibility
|
||||||
"static"
|
"static"
|
||||||
|
"nix" # mainly for nixUnstable users, but also for access to nix/netrc
|
||||||
|
# Shells
|
||||||
|
"bashrc"
|
||||||
|
"zshenv"
|
||||||
|
"zshrc"
|
||||||
|
"zinputrc"
|
||||||
|
"zprofile"
|
||||||
# Users, Groups, NSS
|
# Users, Groups, NSS
|
||||||
"passwd"
|
"passwd"
|
||||||
"group"
|
"group"
|
||||||
@ -136,7 +144,7 @@ let
|
|||||||
${lib.optionalString unshareNet "--unshare-net"}
|
${lib.optionalString unshareNet "--unshare-net"}
|
||||||
${lib.optionalString unshareUts "--unshare-uts"}
|
${lib.optionalString unshareUts "--unshare-uts"}
|
||||||
${lib.optionalString unshareCgroup "--unshare-cgroup"}
|
${lib.optionalString unshareCgroup "--unshare-cgroup"}
|
||||||
--die-with-parent
|
${lib.optionalString dieWithParent "--die-with-parent"}
|
||||||
--ro-bind /nix /nix
|
--ro-bind /nix /nix
|
||||||
# Our glibc will look for the cache in its own path in `/nix/store`.
|
# Our glibc will look for the cache in its own path in `/nix/store`.
|
||||||
# As such, we need a cache to exist there, because pressure-vessel
|
# As such, we need a cache to exist there, because pressure-vessel
|
||||||
|
Loading…
Reference in New Issue
Block a user