From 44942e2ef7bc8884988d006f50985a813b6a4587 Mon Sep 17 00:00:00 2001 From: Crony Akatsuki Date: Tue, 25 Nov 2025 11:36:26 +0100 Subject: [PATCH] feat(gamemode): disable pinning cores, crashes some games. --- modules/linux/nixos/gaming.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/linux/nixos/gaming.nix b/modules/linux/nixos/gaming.nix index d2829c2..252cf6e 100644 --- a/modules/linux/nixos/gaming.nix +++ b/modules/linux/nixos/gaming.nix @@ -31,6 +31,9 @@ softrealtime = "auto"; renice = 10; }; + cpu = { + pin_cores = "no"; + }; custom = { start = "${pkgs.libnotify}/bin/notify-send 'GameMode started'"; end = "${pkgs.libnotify}/bin/notify-send 'GameMode ended'";