diff --git a/modules/periodic.nix b/modules/periodic.nix
index 3f32d23..f4a975a 100644
--- a/modules/periodic.nix
+++ b/modules/periodic.nix
@@ -15,17 +15,6 @@ with pkgs;
     after = [ "network-online.target" ];
   };
 
-  # Clean up Doom Emacs monthly
-  systemd.user.services.doom-purge = {
-    description = "Purge Doom Emacs";
-    path = [ bash emacs-vterm git coreutils ];
-    script = ''
-      ${pkgs.bash}/bin/bash -c "/home/coolneng/.emacs.d/bin/doom -! purge -g"
-    '';
-    serviceConfig.Type = "oneshot";
-    startAt = "*-*-13 20:00:00";
-  };
-
   # Upgrade Neovim plugins weekly
   systemd.user.services.vim-plug-upgrade = {
     description = "Upgrade Vim-Plug";