mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 06:22:56 +00:00
31 lines
675 B
Nix
31 lines
675 B
Nix
{ config, pkgs, lib, ... }: {
|
|
|
|
options.gaming.leagueoflegends = lib.mkEnableOption "League of Legends";
|
|
|
|
config = lib.mkIf config.gaming.leagueoflegends {
|
|
|
|
# League of Legends anti-cheat requirement
|
|
boot.kernel.sysctl = { "abi.vsyscall32" = 0; };
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
# Lutris requirement to install the game
|
|
lutris
|
|
amdvlk
|
|
wineWowPackages.stable
|
|
# vulkan-tools
|
|
|
|
# Required according to https://lutris.net/games/league-of-legends/
|
|
openssl
|
|
gnome.zenity
|
|
|
|
# Don't remember if this is required
|
|
dconf
|
|
|
|
];
|
|
|
|
environment.sessionVariables = { QT_X11_NO_MITSHM = "1"; };
|
|
|
|
};
|
|
}
|