linux/common-config: don't set DEVKMEM on aarch64

The option never existed on aarch64.

Changed files
+1 -1
pkgs
os-specific
linux
+1 -1
pkgs/os-specific/linux/kernel/common-config.nix
···
# This does not have any effect if a program does not support it
SECURITY_LANDLOCK = whenAtLeast "5.13" yes;
-
DEVKMEM = whenOlder "5.13" no; # Disable /dev/kmem
USER_NS = yes; # Support for user namespaces
···
# This does not have any effect if a program does not support it
SECURITY_LANDLOCK = whenAtLeast "5.13" yes;
+
DEVKMEM = lib.mkIf (!stdenv.hostPlatform.isAarch64) (whenOlder "5.13" no); # Disable /dev/kmem
USER_NS = yes; # Support for user namespaces