]> git.immae.eu Git - perso/Immae/Config/Nix.git/blobdiff - nixops/modules/mail.nix
Move rest of the modules outside of nixops
[perso/Immae/Config/Nix.git] / nixops / modules / mail.nix
diff --git a/nixops/modules/mail.nix b/nixops/modules/mail.nix
deleted file mode 100644 (file)
index 611c8b4..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-{ lib, pkgs, config, myconfig,  ... }:
-{
-  config.users.users.nullmailer.uid = config.ids.uids.nullmailer;
-  config.users.groups.nullmailer.gid = config.ids.gids.nullmailer;
-
-  config.services.nullmailer = {
-    enable = true;
-    config = {
-      me = myconfig.env.mail.host;
-      remotes = "${myconfig.env.mail.relay} smtp";
-    };
-  };
-}