dotfiles/modules/gaming/leagueoflegends.nix

15 lines
243 B
Nix
Raw Normal View History

2022-04-26 01:54:53 +00:00
{ config, pkgs, ... }:
{
imports = [ ./common.nix ./lutris.nix ];
config = {
# League of Legends anti-cheat
boot.kernel.sysctl = { "abi.vsyscall32" = 0; };
environment.systemPackages = with pkgs; [ openssl dconf ];
};
}