mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-13 00:52:56 +00:00
14 lines
319 B
Nix
14 lines
319 B
Nix
{ config, pkgs, lib, ... }: {
|
|
|
|
options.gaming.leagueoflegends = lib.mkEnableOption "League of Legends";
|
|
|
|
config = lib.mkIf config.gaming.leagueoflegends {
|
|
|
|
# League of Legends anti-cheat
|
|
boot.kernel.sysctl = { "abi.vsyscall32" = 0; };
|
|
|
|
environment.systemPackages = with pkgs; [ openssl dconf ];
|
|
|
|
};
|
|
}
|