fix warnings for flame

This commit is contained in:
Noah Masur
2025-02-18 17:44:39 -05:00
parent 1d4ad5b0af
commit 7007567207
18 changed files with 94 additions and 75 deletions

View File

@ -2,6 +2,7 @@
config,
pkgs,
lib,
hostnames,
...
}:
@ -16,10 +17,12 @@ in
host = lib.mkOption {
type = lib.types.str;
description = "Hostname for SMTP server";
default = hostnames.smtp;
};
domain = lib.mkOption {
type = lib.types.str;
description = "Domain name for SMTP email";
default = hostnames.mail;
};
user = lib.mkOption {
type = lib.types.str;