about summary refs log tree commit diff
path: root/users/tazjin/nixos
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2023-01-17T20·34+0300
committerclbot <clbot@tvl.fyi>2023-01-17T20·40+0000
commit425a54d36102e2909e7a99d816b6615ac5523996 (patch)
treeb64f3cba0aef9b868782c8849f3223526f90efb0 /users/tazjin/nixos
parentaa96e25bbc96d81ffe546ffac76d9b04bef12811 (diff)
fix(tazjin/tverskoy): disable systemd-oomd r/5679
This seems to have been turned on in ~November/December 2022, and is
wreaking havoc on my system usability as it keeps killing my X session
as soon as any kind of load happens on the system.

This can be as little as accidentally playing two YouTube videos (as
each YouTube tab can take 3-5GiB of RAM), or trying to process a
dataset locally.

I'm not sure if this is the culprit, but it sure seems like it.

Change-Id: Id742b4506262cc362c9fd3f2575aea23e5c092a7
Reviewed-on: https://cl.tvl.fyi/c/depot/+/7858
Tested-by: BuildkiteCI
Autosubmit: tazjin <tazjin@tvl.su>
Reviewed-by: tazjin <tazjin@tvl.su>
Diffstat (limited to 'users/tazjin/nixos')
-rw-r--r--users/tazjin/nixos/tverskoy/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/users/tazjin/nixos/tverskoy/default.nix b/users/tazjin/nixos/tverskoy/default.nix
index 57e7aa4a11..4aa17cc2c4 100644
--- a/users/tazjin/nixos/tverskoy/default.nix
+++ b/users/tazjin/nixos/tverskoy/default.nix
@@ -159,5 +159,10 @@ lib.fix (self: {
     };
   };
 
+  # systemd-oomd seems to have been enabled by default around ~
+  # December 2022, and it's really into killing my X session as soon
+  # as I do anything stressful to the machine
+  systemd.services.systemd-oomd.enable = lib.mkForce false;
+
   system.stateVersion = "20.09";
 })