2024-01-19 03:06:52 +05:30
|
|
|
{ pkgs, ... }:
|
2023-07-31 20:15:45 +05:30
|
|
|
|
|
|
|
{
|
|
|
|
environment.systemPackages = with pkgs; [ firejail ];
|
|
|
|
programs.firejail.enable = true;
|
|
|
|
programs.firejail.wrappedBinaries = {
|
2024-06-24 06:53:43 +05:30
|
|
|
#prismlauncher = {
|
|
|
|
# executable = "${pkgs.prismlauncher}/bin/prismlauncher";
|
|
|
|
# profile = ./firejail-profiles/prismlauncher.profile;
|
|
|
|
#};
|
2023-07-31 20:15:45 +05:30
|
|
|
steam = {
|
|
|
|
executable = "${pkgs.steam}/bin/steam";
|
|
|
|
profile = "${pkgs.firejail}/etc/firejail/steam.profile";
|
|
|
|
};
|
|
|
|
steam-run = {
|
|
|
|
executable = "${pkgs.steam}/bin/steam-run";
|
|
|
|
profile = "${pkgs.firejail}/etc/firejail/steam.profile";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|