Merge pull request #70371 from dminuoso/dovecot-fix-type
dovecot: fix wrong type in configFile option
This commit is contained in:
@@ -181,7 +181,7 @@ in
|
|||||||
};
|
};
|
||||||
|
|
||||||
configFile = mkOption {
|
configFile = mkOption {
|
||||||
type = types.nullOr types.str;
|
type = types.nullOr types.path;
|
||||||
default = null;
|
default = null;
|
||||||
description = "Config file used for the whole dovecot configuration.";
|
description = "Config file used for the whole dovecot configuration.";
|
||||||
apply = v: if v != null then v else pkgs.writeText "dovecot.conf" dovecotConf;
|
apply = v: if v != null then v else pkgs.writeText "dovecot.conf" dovecotConf;
|
||||||
|
|||||||
Reference in New Issue
Block a user