updates for nixos-25.11
This commit is contained in:
parent
e48bf0aa90
commit
774745a41a
3 changed files with 7 additions and 3 deletions
|
@ -15,7 +15,7 @@ in
|
||||||
networking.domain = "hamburg.freifunk.net";
|
networking.domain = "hamburg.freifunk.net";
|
||||||
services.mymailserver = {
|
services.mymailserver = {
|
||||||
enable = true;
|
enable = true;
|
||||||
logging = false;
|
logging = true;
|
||||||
adminAddress = "postmaster@mail.hamburg.freifunk.net";
|
adminAddress = "postmaster@mail.hamburg.freifunk.net";
|
||||||
mailFQDN = "mail2.hamburg.freifunk.net";
|
mailFQDN = "mail2.hamburg.freifunk.net";
|
||||||
};
|
};
|
||||||
|
|
|
@ -118,6 +118,10 @@ let
|
||||||
'';
|
'';
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
# Configure certificates...
|
||||||
|
environment.systemPackages = [
|
||||||
|
pkgs.dovecot_pigeonhole
|
||||||
|
];
|
||||||
# Configure certificates...
|
# Configure certificates...
|
||||||
security.acme.certs."dovecot2.${config.services.mymailserver.mailFQDN}" = {
|
security.acme.certs."dovecot2.${config.services.mymailserver.mailFQDN}" = {
|
||||||
domain = "${config.services.mymailserver.mailFQDN}";
|
domain = "${config.services.mymailserver.mailFQDN}";
|
||||||
|
@ -133,7 +137,7 @@ in
|
||||||
services.dovecot2 = {
|
services.dovecot2 = {
|
||||||
enable = true;
|
enable = true;
|
||||||
configFile = "${dovecotConf}";
|
configFile = "${dovecotConf}";
|
||||||
modules = [ pkgs.dovecot_pigeonhole ];
|
#modules = [ pkgs.dovecot_pigeonhole ];
|
||||||
};
|
};
|
||||||
systemd.services."vmail-setup" = {
|
systemd.services."vmail-setup" = {
|
||||||
serviceConfig.Type = "oneshot";
|
serviceConfig.Type = "oneshot";
|
||||||
|
|
|
@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Postfix Admin";
|
description = "Postfix Admin";
|
||||||
homepage = http://postfixadmin.sourceforge.net/;
|
homepage = "http://postfixadmin.sourceforge.net/";
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
maintainers = with maintainers; [ tokudan ];
|
maintainers = with maintainers; [ tokudan ];
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue