From 2d937f71d33a7551ec79a3639115055d7381c5da Mon Sep 17 00:00:00 2001 From: buffet Date: Sat, 10 Feb 2024 17:45:53 +0100 Subject: [PATCH] feat(earlyoom): get rid of earlyoom in favor of systemd-oomd --- hosts/alice/default.nix | 1 - hosts/alice/earlyoom.nix | 11 ----------- 2 files changed, 12 deletions(-) delete mode 100644 hosts/alice/earlyoom.nix diff --git a/hosts/alice/default.nix b/hosts/alice/default.nix index 7137fbf..34386cb 100644 --- a/hosts/alice/default.nix +++ b/hosts/alice/default.nix @@ -14,7 +14,6 @@ nur.nixosModules.nur ./borg.nix - ./earlyoom.nix ./gdm.nix ./gpg.nix ./keyd.nix diff --git a/hosts/alice/earlyoom.nix b/hosts/alice/earlyoom.nix deleted file mode 100644 index 15beb4e..0000000 --- a/hosts/alice/earlyoom.nix +++ /dev/null @@ -1,11 +0,0 @@ -# TODO: remove in favor of systemd-oomd -_: { - services = { - systembus-notify.enable = true; - - earlyoom = { - enable = true; - enableNotifications = true; - }; - }; -}