diff options
author | tv <tv@shackspace.de> | 2015-03-24 18:29:19 +0100 |
---|---|---|
committer | tv <tv@shackspace.de> | 2015-05-19 23:14:31 +0200 |
commit | 4aca9053f0ed988ed4eb31458d61a159deca36d6 (patch) | |
tree | d72c3dea85d77867697065f50f70ec446bfefde9 /modules | |
parent | bec77179a00e84c5761a5b2cba80435c999df573 (diff) |
module exim: use config.networking.hostName
Diffstat (limited to 'modules')
-rw-r--r-- | modules/exim.nix | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/modules/exim.nix b/modules/exim.nix index 4a0232c8c..e80358fcd 100644 --- a/modules/exim.nix +++ b/modules/exim.nix @@ -2,8 +2,12 @@ { services.exim = + # This configuration makes only sense for retiolum-enabled hosts. + # TODO modular configuration + assert config.services.retiolum.enable; let - retiolumHostname = "wu.retiolum"; # TODO "${networking.hostName}.retiolum"; + # TODO get the hostname from config.services.retiolum. + retiolumHostname = "${config.networking.hostName}.retiolum"; in { enable = true; config = '' |