2016-08-06 08:13:20 +00:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
let
|
|
|
|
cfg = config.security.chromiumSuidSandbox;
|
|
|
|
sandbox = pkgs.chromium.sandbox;
|
|
|
|
in
|
|
|
|
{
|
2019-12-10 01:51:19 +00:00
|
|
|
imports = [
|
2024-12-08 12:18:21 +00:00
|
|
|
(lib.mkRenamedOptionModule
|
|
|
|
[ "programs" "unity3d" "enable" ]
|
|
|
|
[ "security" "chromiumSuidSandbox" "enable" ]
|
|
|
|
)
|
2019-12-10 01:51:19 +00:00
|
|
|
];
|
|
|
|
|
2024-12-08 12:18:21 +00:00
|
|
|
options.security.chromiumSuidSandbox.enable = lib.mkOption {
|
|
|
|
type = lib.types.bool;
|
2016-08-07 22:55:11 +00:00
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Whether to install the Chromium SUID sandbox which is an executable that
|
|
|
|
Chromium may use in order to achieve sandboxing.
|
2016-08-06 08:13:20 +00:00
|
|
|
|
2016-08-07 22:55:11 +00:00
|
|
|
If you get the error "The SUID sandbox helper binary was found, but is not
|
|
|
|
configured correctly.", turning this on might help.
|
2016-08-06 08:13:20 +00:00
|
|
|
|
2016-08-07 22:55:11 +00:00
|
|
|
Also, if the URL chrome://sandbox tells you that "You are not adequately
|
|
|
|
sandboxed!", turning this on might resolve the issue.
|
|
|
|
'';
|
|
|
|
};
|
2016-08-06 08:13:20 +00:00
|
|
|
|
2024-12-08 12:18:21 +00:00
|
|
|
config = lib.mkIf cfg.enable {
|
2016-08-06 08:13:20 +00:00
|
|
|
environment.systemPackages = [ sandbox ];
|
2021-09-12 16:53:48 +00:00
|
|
|
security.wrappers.${sandbox.passthru.sandboxExecutableName} = {
|
|
|
|
setuid = true;
|
|
|
|
owner = "root";
|
|
|
|
group = "root";
|
|
|
|
source = "${sandbox}/bin/${sandbox.passthru.sandboxExecutableName}";
|
|
|
|
};
|
2016-08-06 08:13:20 +00:00
|
|
|
};
|
|
|
|
}
|