From 79d2de8b83d765721b2cb720b2bc59673df54a4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isma=C3=ABl=20Bouya?= Date: Tue, 7 May 2019 15:07:00 +0200 Subject: Move directories with only default.nix to standalone file --- nixops/modules/mail/default.nix | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 nixops/modules/mail/default.nix (limited to 'nixops/modules/mail') diff --git a/nixops/modules/mail/default.nix b/nixops/modules/mail/default.nix deleted file mode 100644 index 6ec9165..0000000 --- a/nixops/modules/mail/default.nix +++ /dev/null @@ -1,15 +0,0 @@ -{ lib, pkgs, config, myconfig, mylibs, ... }: -{ - config.ids.uids.nullmailer = myconfig.env.users.nullmailer.uid; - config.ids.gids.nullmailer = myconfig.env.users.nullmailer.gid; - 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"; - }; - }; -} -- cgit v1.2.3