1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-13 12:19:09 +00:00

sandbox: add missing option descriptions

This commit is contained in:
Daiderd Jordan 2019-05-04 14:46:24 +02:00
parent dc923dbac2
commit 66495818a3
No known key found for this signature in database
GPG key ID: D02435D05B810C96

View file

@ -11,6 +11,7 @@ let
options = {
profile = mkOption {
type = types.lines;
internal = true;
apply = text: pkgs.runCommandNoCC "sandbox.sb" {} ''
for f in $(< ${config.closure}/store-paths); do
storePaths+="(subpath \"$f\")"
@ -44,6 +45,7 @@ let
allowSystemPaths = mkOption {
type = types.bool;
default = false;
description = "Whether to allow read access to FHS paths like /etc and /var.";
};
allowLocalNetworking = mkOption {