From e4b9e302e998784300feccdc0c7c42408798bd4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Sun, 12 Feb 2023 19:34:30 +0100 Subject: [PATCH] Fix sendmail path For dropped commits, but keep it in the future --- nixos-module.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nixos-module.nix b/nixos-module.nix index 700e983..21deefc 100644 --- a/nixos-module.nix +++ b/nixos-module.nix @@ -21,7 +21,9 @@ in config = mkOption { type = types.lines; - default = builtins.readFile ./config/settings.yml; + default = builtins.readFile ./config/settings.yml + '' + sendmail-location: "/run/wrappers/bin/sendmail" + ''; description = "Configuration for Yammat"; }; };