fix: no need to have discord bot stuff in here
All checks were successful
Build / build (push) Successful in 2m4s
Build / deploy (push) Successful in 13s

This commit is contained in:
silver 2024-11-18 12:13:33 +00:00
parent aa0cfc017d
commit 00ac57de63
Signed by: silver
GPG key ID: 36F93D61BAD3FD7D
2 changed files with 0 additions and 12 deletions

View file

@ -84,7 +84,6 @@
ExecStart = "${self.defaultPackage."${system}"}/bin/${script}";
EnvironmentFile = [
"${cfg.env.ldap}"
"${cfg.env.discord}"
"${cfg.env.mail}"
"${cfg.env.wolves}"
];
@ -123,10 +122,6 @@
type = types.str;
description = "Auth for the LDAP, has LDAP_HOST, LDAP_ADMIN, LDAP_ADMIN_PW";
};
discord = mkOption rec {
type = types.str;
description = "Auth for the discord bot, has LDAP_DISCORD_AUTH";
};
mail = mkOption rec {
type = types.str;
description = "Mail details, has EMAIL_SMTP, EMAIL_USER, EMAIL_PASS";
@ -232,14 +227,12 @@
# multiple files
EnvironmentFile = [
"${cfg.env.ldap}"
"${cfg.env.discord}"
"${cfg.env.mail}"
"${cfg.env.wolves}"
];
};
restartTriggers = [
"${cfg.env.ldap}"
"${cfg.env.discord}"
"${cfg.env.mail}"
"${cfg.env.wolves}"
];