summary refs log tree commit diff
path: root/nixos/modules/services/amqp
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2015-09-24 11:42:32 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2015-09-24 11:50:58 +0200
commit89e983786a4e2cf6dd238af4df6da373cc01e62b (patch)
tree857ecb8eab59fe1855b1fb311e6e1e9ec8303bdc /nixos/modules/services/amqp
parente73b19ae4e984f58cebe4dd4f82cda622da552ab (diff)
downloadnixlib-89e983786a4e2cf6dd238af4df6da373cc01e62b.tar
nixlib-89e983786a4e2cf6dd238af4df6da373cc01e62b.tar.gz
nixlib-89e983786a4e2cf6dd238af4df6da373cc01e62b.tar.bz2
nixlib-89e983786a4e2cf6dd238af4df6da373cc01e62b.tar.lz
nixlib-89e983786a4e2cf6dd238af4df6da373cc01e62b.tar.xz
nixlib-89e983786a4e2cf6dd238af4df6da373cc01e62b.tar.zst
nixlib-89e983786a4e2cf6dd238af4df6da373cc01e62b.zip
Manual: Remove store path references
Diffstat (limited to 'nixos/modules/services/amqp')
-rw-r--r--nixos/modules/services/amqp/activemq/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/nixos/modules/services/amqp/activemq/default.nix b/nixos/modules/services/amqp/activemq/default.nix
index 261f97617664..56ff388f8a9e 100644
--- a/nixos/modules/services/amqp/activemq/default.nix
+++ b/nixos/modules/services/amqp/activemq/default.nix
@@ -32,7 +32,6 @@ in {
         '';
       };
       configurationDir = mkOption {
-        default = "${activemq}/conf";
         description = ''
           The base directory for ActiveMQ's configuration.
           By default, this directory is searched for a file named activemq.xml,
@@ -126,6 +125,8 @@ in {
       '';
     };
 
+    services.activemq.configurationDir = mkDefault "${activemq}/conf";
+
   };
 
 }