mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-16 22:11:07 +01:00
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.
This commit is contained in:
parent
684e85d01d
commit
a3638db009
1 changed files with 1 additions and 1 deletions
|
|
@ -44,7 +44,7 @@ in {
|
||||||
|
|
||||||
systemd.user.services.getmail = {
|
systemd.user.services.getmail = {
|
||||||
Unit = { Description = "getmail email fetcher"; };
|
Unit = { Description = "getmail email fetcher"; };
|
||||||
Service = { ExecStart = "${pkgs.getmail}/bin/getmail ${configFiles}"; };
|
Service = { ExecStart = "${pkgs.getmail6}/bin/getmail ${configFiles}"; };
|
||||||
};
|
};
|
||||||
|
|
||||||
systemd.user.timers.getmail = {
|
systemd.user.timers.getmail = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue