From a3638db009f3dbcca5f44b8f858af9d7e22bf2b7 Mon Sep 17 00:00:00 2001 From: Roman Joost Date: Sun, 5 Jun 2022 19:48:58 +1000 Subject: [PATCH] Use newer getmail6 over getmail package (#2982) The `getmail` package will soon be removed from nixpkgs. The `nixos-unstable` channel already has it removed and using the service will result in: error: getmail has been removed from nixpkgs, migrate to getmail6 Upgrade to the getmail6 package which is already available and backwards compatible. --- modules/services/getmail.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/services/getmail.nix b/modules/services/getmail.nix index 83ed4ed45..05950e62a 100644 --- a/modules/services/getmail.nix +++ b/modules/services/getmail.nix @@ -44,7 +44,7 @@ in { systemd.user.services.getmail = { Unit = { Description = "getmail email fetcher"; }; - Service = { ExecStart = "${pkgs.getmail}/bin/getmail ${configFiles}"; }; + Service = { ExecStart = "${pkgs.getmail6}/bin/getmail ${configFiles}"; }; }; systemd.user.timers.getmail = {