install sogo from 24.11

This commit is contained in:
Rouven Seifert 2025-06-27 11:11:44 +02:00 committed by quitte
parent bf26b2b767
commit d12baef036
3 changed files with 25 additions and 1 deletions

View file

@ -1,4 +1,4 @@
{ config, lib, ... }:
{ pkgs, config, lib, nixpkgs-legacy, ... }:
let
sogo-hostname = "mail.${config.networking.domain}";
in
@ -9,6 +9,11 @@ in
owner = config.systemd.services.sogo.serviceConfig.User;
};
};
nixpkgs.overlays = [
(self: super: {
sogo = nixpkgs-legacy.legacyPackages."${pkgs.system}".sogo;
})
];
services = {
memcached.enable = true;