feat: remove minecraft and add grafana secret
This commit is contained in:
parent
ce89f2fcda
commit
cc2036d95e
10 changed files with 21 additions and 106 deletions
33
secrets/secrets-scheme.nix
Normal file
33
secrets/secrets-scheme.nix
Normal 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";
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue