mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
nixos/postfix: allow int in config
eg. unknown_local_recipient_reject_code can be set to 550 which toString can stringify
This commit is contained in:
parent
cb9a96f23c
commit
2862350f61
@ -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.
|
||||
'';
|
||||
|
Loading…
Reference in New Issue
Block a user