chromium-suid-sandbox module: fix description
This commit is contained in:
parent
43da8b14a0
commit
b2413e48ae
@ -7,7 +7,10 @@ let
|
|||||||
sandbox = pkgs.chromium.sandbox;
|
sandbox = pkgs.chromium.sandbox;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
options.security.chromiumSuidSandbox.enable = mkEnableOption ''
|
options.security.chromiumSuidSandbox.enable = mkOption {
|
||||||
|
type = types.bool;
|
||||||
|
default = false;
|
||||||
|
description = ''
|
||||||
Whether to install the Chromium SUID sandbox which is an executable that
|
Whether to install the Chromium SUID sandbox which is an executable that
|
||||||
Chromium may use in order to achieve sandboxing.
|
Chromium may use in order to achieve sandboxing.
|
||||||
|
|
||||||
@ -20,6 +23,7 @@ in
|
|||||||
Finally, if you have <option>security.grsecurity</option> enabled and you
|
Finally, if you have <option>security.grsecurity</option> enabled and you
|
||||||
use Chromium, you probably need this.
|
use Chromium, you probably need this.
|
||||||
'';
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
environment.systemPackages = [ sandbox ];
|
environment.systemPackages = [ sandbox ];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user