From 8b43439238190d494f8d87a49af1df03163d1a0e Mon Sep 17 00:00:00 2001 From: Toast Date: Tue, 2 Jul 2024 14:34:28 +0200 Subject: [PATCH 1/2] Machines/WinMax2: remove unneeded workaround --- machines/WinMax2/configuration.nix | 5 ----- 1 file changed, 5 deletions(-) diff --git a/machines/WinMax2/configuration.nix b/machines/WinMax2/configuration.nix index 593fcb3..73b8a5a 100755 --- a/machines/WinMax2/configuration.nix +++ b/machines/WinMax2/configuration.nix @@ -36,11 +36,6 @@ networking.hostName = "WinMax2"; # Define your hostname. - specialisation.noAVX512.configuration = { - # For some reason The Finals crashes on CPUs that support AVX512 - boot.kernelParams = ["clearcpuid=304"]; - }; - # Direct scanout has some issues with my egpu so I just disable it environment.sessionVariables."KWIN_DRM_NO_DIRECT_SCANOUT" = 1; From b9b9f28e26b36570990f653364ec60e258d8e15b Mon Sep 17 00:00:00 2001 From: Toast Date: Tue, 2 Jul 2024 14:34:52 +0200 Subject: [PATCH 2/2] Common: enable iotop --- roles/common/configuration.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/roles/common/configuration.nix b/roles/common/configuration.nix index 7092f16..f891145 100755 --- a/roles/common/configuration.nix +++ b/roles/common/configuration.nix @@ -100,6 +100,8 @@ accent = "mauve"; }; + programs.iotop.enable = true; + home-manager = { backupFileExtension = "hm-backup"; useGlobalPkgs = true;