From 5de5e206d2fe5c98ebbc1d52f8b1d22934910a7f Mon Sep 17 00:00:00 2001 From: "Alexander \"PapaTutuWawa" Date: Sun, 17 Jul 2022 16:54:59 +0200 Subject: [PATCH] miku: Fix abi.vsyscall32 --- hosts/miku.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/hosts/miku.nix b/hosts/miku.nix index 478e9d2..327bd46 100644 --- a/hosts/miku.nix +++ b/hosts/miku.nix @@ -155,11 +155,13 @@ "clocksource=tsc" "tsc=reliable" "pci=noaer" - # League of Legends under Linux - "abi.vsyscall32=0" # Enable Apparmor "lsm=landlock,lockdown,yama,integrity,apparmor,bpf" ]; + kernel.sysctl = { + # League of Legends under Linux + "abi.vsyscall32" = 0; + }; extraModulePackages = [ kernel.vendor-reset ];