From 19d00f703a69ded237816e1853d8cd8cdaab5d90 Mon Sep 17 00:00:00 2001 From: coolneng Date: Wed, 22 Mar 2023 23:21:45 +0100 Subject: [PATCH] Remove redundant Doom emacs monthly cleanup --- modules/periodic.nix | 11 ----------- 1 file changed, 11 deletions(-) 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";