3
0
Fork 0
forked from mirrors/nixpkgs

nixos/firejail: add example for wrappedBinaries

This commit is contained in:
Martin Milata 2020-02-29 18:55:53 +01:00
parent 6ec8687047
commit 96e36bf1ba

View file

@ -25,8 +25,14 @@ in {
enable = mkEnableOption "firejail";
wrappedBinaries = mkOption {
type = types.attrs;
type = types.attrsOf types.path;
default = {};
example = literalExample ''
{
firefox = "''${lib.getBin pkgs.firefox}/bin/firefox";
mpv = "''${lib.getBin pkgs.mpv}/bin/mpv";
}
'';
description = ''
Wrap the binaries in firejail and place them in the global path.
</para>