mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 07:32:55 +00:00
15 lines
243 B
Nix
15 lines
243 B
Nix
|
{ 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 ];
|
||
|
|
||
|
};
|
||
|
}
|