Unverified Commit 2862350f authored by Sandro Jäckel's avatar Sandro Jäckel
Browse files

nixos/postfix: allow int in config

eg. unknown_local_recipient_reject_code can be set to 550 which toString
can stringify
parent cb9a96f2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -484,7 +484,7 @@ in
      };

      config = mkOption {
        type = with types; attrsOf (oneOf [ bool str (listOf str) ]);
        type = with types; attrsOf (oneOf [ bool int str (listOf str) ]);
        description = ''
          The main.cf configuration file as key value set.
        '';