NixOS configuration for HPC cluster
https://docs.hpc.informatik.hs-fulda.de/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
398 B
20 lines
398 B
{ config, ... }:
|
|
|
|
{
|
|
programs.msmtp = {
|
|
enable = true;
|
|
accounts = {
|
|
default = {
|
|
auth = true;
|
|
tls = true;
|
|
port = 587;
|
|
from = "fdhpc@informatik.hs-fulda.de";
|
|
host = "smtp.hs-fulda.de";
|
|
user = "fdhpc";
|
|
passwordeval = "cat ${config.sops.secrets."mail/password".path}";
|
|
};
|
|
};
|
|
};
|
|
|
|
sops.secrets."mail/password" = { };
|
|
}
|