From 81cf231f68d63a54a8c4da90226c8667c4f41727 Mon Sep 17 00:00:00 2001 From: fruchti Date: Thu, 17 Apr 2025 11:37:33 +0200 Subject: [PATCH] Fix email sending --- options/email.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/options/email.nix b/options/email.nix index 62f631c..244e891 100644 --- a/options/email.nix +++ b/options/email.nix @@ -1,4 +1,4 @@ -{ config, lib, ... }: +{ config, lib, pkgs, ... }: with lib; let cfg = config.email; @@ -37,7 +37,7 @@ in default = { auth = true; host = "gvfr.de"; - passwordeval = "cat /secrets/email_password.txt"; + passwordeval = "${pkgs.coreutils}/bin/cat /secrets/email_password.txt"; user = cfg.fromAddress; from = cfg.fromAddress; port = 465;