programs.firejail.wrappedBinaries

NixOS option

Wrap the binaries in firejail and place them in the global path.

type: attribute set of (absolute path or (submodule))
Default
{ }
Example
{
  firefox = {
    executable = "${lib.getBin pkgs.firefox}/bin/firefox";
    profile = "${pkgs.firejail}/etc/firejail/firefox.profile";
  };
  mpv = {
    executable = "${lib.getBin pkgs.mpv}/bin/mpv";
    profile = "${pkgs.firejail}/etc/firejail/mpv.profile";
  };
}
declared in: nixos/modules/programs/firejail.nixView source on NixOS/nixpkgs →