added type to tokenFile

This commit is contained in:
Leyla Becker 2025-02-26 10:54:53 -06:00
parent f8966f062f
commit 14f170cdc9

View file

@ -42,7 +42,10 @@ in {
type = lib.types.str; type = lib.types.str;
description = "what user is the email going to be set from"; description = "what user is the email going to be set from";
}; };
tokenFile = lib.mkOption {}; # TODO: make this a secrets file tokenFile = lib.mkOption {
type = lib.types.str;
description = "file containing the password to be used by msmtp for notifications";
};
}; };
pool = { pool = {
vdevs = lib.mkOption { vdevs = lib.mkOption {