mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01: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
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue