summary refs log tree commit diff
path: root/nixos/modules/services/amqp
diff options
context:
space:
mode:
authorDaniel Nagy <danielnagy@posteo.de>2021-06-18 17:26:27 +0200
committerDaniel Nagy <danielnagy@posteo.de>2021-06-18 17:26:27 +0200
commitd65f16bc025e3c1fd9d2ab799bb02945617d80b4 (patch)
treee7bc90f6c603f926784a71c0ae39877859d7475a /nixos/modules/services/amqp
parent181f012824881029e6eda521e7dbefb8f2071be4 (diff)
downloadnixpkgs-d65f16bc025e3c1fd9d2ab799bb02945617d80b4.tar
nixpkgs-d65f16bc025e3c1fd9d2ab799bb02945617d80b4.tar.gz
nixpkgs-d65f16bc025e3c1fd9d2ab799bb02945617d80b4.tar.bz2
nixpkgs-d65f16bc025e3c1fd9d2ab799bb02945617d80b4.tar.lz
nixpkgs-d65f16bc025e3c1fd9d2ab799bb02945617d80b4.tar.xz
nixpkgs-d65f16bc025e3c1fd9d2ab799bb02945617d80b4.tar.zst
nixpkgs-d65f16bc025e3c1fd9d2ab799bb02945617d80b4.zip
nixos/rabbitmq: use `port` type
Diffstat (limited to 'nixos/modules/services/amqp')
-rw-r--r--nixos/modules/services/amqp/rabbitmq.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/amqp/rabbitmq.nix b/nixos/modules/services/amqp/rabbitmq.nix
index 646708e01c4..fc8a1bc3c23 100644
--- a/nixos/modules/services/amqp/rabbitmq.nix
+++ b/nixos/modules/services/amqp/rabbitmq.nix
@@ -57,7 +57,7 @@ in {
         description = ''
           Port on which RabbitMQ will listen for AMQP connections.
         '';
-        type = types.int;
+        type = types.port;
       };
 
       dataDir = mkOption {