nix-stuff/roles/gaming/rpcs3.nix

13 lines
263 B
Nix

{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [ rpcs3 ];
# Increase the memory lock limit
security.pam.loginLimits = [{
domain = "*";
item = "memlock";
type = "-"; # Applies to both hard and soft limits
value = "unlimited";
}];
}