summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobin Raymond <robin@robinraymond.de>2017-09-02 12:58:25 +0200
committerRobin Raymond <robin@robinraymond.de>2017-09-02 12:58:25 +0200
commit691f034f9dbef8f58ac467099794d860315f6a28 (patch)
tree17f4d94b1ee36200f8ea81494a3aab8b6ee68e69
parentb0ae2de5f4e0e5f98071f7df5b71de875bb582cf (diff)
update nixops for module config
-rw-r--r--nixops/single-server.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/nixops/single-server.nix b/nixops/single-server.nix
index a6aa831..a96da0b 100644
--- a/nixops/single-server.nix
+++ b/nixops/single-server.nix
@@ -5,7 +5,12 @@
{ config, pkgs, ... }:
{
imports = [
- ./../mail-config.nix
+ ./../default.nix
];
+
+ mailserver = {
+ enable = true;
+ domain = "example.com";
+ };
};
}