diff options
author | Vincent Ambo <mail@tazj.in> | 2023-01-17T20·34+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-01-17T20·40+0000 |
commit | 425a54d36102e2909e7a99d816b6615ac5523996 (patch) | |
tree | b64f3cba0aef9b868782c8849f3223526f90efb0 /users | |
parent | aa96e25bbc96d81ffe546ffac76d9b04bef12811 (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')
-rw-r--r-- | users/tazjin/nixos/tverskoy/default.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/users/tazjin/nixos/tverskoy/default.nix b/users/tazjin/nixos/tverskoy/default.nix index 57e7aa4a1133..4aa17cc2c4cd 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"; }) |