dotfiles/modules/gaming/leagueoflegends.nix

21 lines
384 B
Nix
Raw Normal View History

2022-04-26 23:59:55 +00:00
{ config, pkgs, lib, ... }:
2022-04-26 01:54:53 +00:00
2022-04-26 23:59:55 +00:00
with lib;
let cfg = config.modules.gaming.leagueoflegends;
2022-04-26 01:54:53 +00:00
2022-04-26 23:59:55 +00:00
in {
options.modules.gaming.leagueoflegends = {
2022-04-27 13:23:26 +00:00
enable = mkEnableOption "League of Legends";
2022-04-26 23:59:55 +00:00
};
config = mkIf cfg.enable {
2022-04-26 01:54:53 +00:00
# League of Legends anti-cheat
boot.kernel.sysctl = { "abi.vsyscall32" = 0; };
environment.systemPackages = with pkgs; [ openssl dconf ];
};
}