feat: remove minecraft and add grafana secret

This commit is contained in:
Jet Pham 2026-02-18 19:09:21 -08:00
parent ce89f2fcda
commit cc2036d95e
No known key found for this signature in database
10 changed files with 21 additions and 106 deletions

View file

@ -0,0 +1,33 @@
{ lib, ... }:
with lib;
{
options.mySecrets = {
forgejoDb = mkOption {
type = types.str;
description = "Forgejo Database Password";
};
stalwartAdmin = mkOption {
type = types.str;
description = "Stalwart Mail Admin Password";
};
searxKey = mkOption {
type = types.str;
description = "Searx Secret Key";
};
tailscaleKey = mkOption {
type = types.str;
description = "Tailscale Auth Key";
};
sshPublicKey = mkOption {
type = types.str;
description = "SSH Public Key for Root User";
};
grafanaSecret = mkOption {
type = types.str;
description = "Grafana Secret Key for security";
};
};
}