forked from mirrors/nixpkgs
nixos/firejail: add example for wrappedBinaries
This commit is contained in:
parent
6ec8687047
commit
96e36bf1ba
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue