dovecot.nix: correct bogus reference to dovecot in Nixpkgs
This commit is contained in:
parent
a7700202f2
commit
2d6d678bb9
modules/services/mail
|
@ -141,10 +141,10 @@ in
|
|||
${pkgs.coreutils}/bin/chown -R ${cfg.user}:${cfg.group} /var/run/dovecot2
|
||||
'';
|
||||
|
||||
exec = "${pkgs.dovecot_2_0}/sbin/dovecot -F -c ${confFile}";
|
||||
exec = "${pkgs.dovecot}/sbin/dovecot -F -c ${confFile}";
|
||||
};
|
||||
|
||||
environment.systemPackages = [ pkgs.dovecot_2_0 ];
|
||||
environment.systemPackages = [ pkgs.dovecot ];
|
||||
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue