mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-19 07:05:51 +05:30
21 lines
587 B
Nix
21 lines
587 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
environment.systemPackages = with pkgs; [ firejail ];
|
||
|
programs.firejail.enable = true;
|
||
|
programs.firejail.wrappedBinaries = {
|
||
|
prismlauncher = {
|
||
|
executable = "${pkgs.prismlauncher}/bin/prismlauncher";
|
||
|
profile = ./firejail-profiles/prismlauncher.profile;
|
||
|
};
|
||
|
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";
|
||
|
};
|
||
|
};
|
||
|
}
|