the_prg_server_configuratio.../nix-system-configs/modules/secrets/secrets.example.nix
Christine Elisabeth Koppel 99a0ed1719
- Dedicated Database: Add MariaDB ports
- Songsheet: Update the compose comments, as the database uses the dedicated database
- General: Re-added Librewolf onto the module.
2026-02-07 14:08:52 +01:00

19 lines
409 B
Nix

{
config,
pkgs,
lib,
...
}: {
# TODO Figure out a better way to manage secrets.
# CHECK OUT https://github.com/ryantm/agenix
local.secrets = {
gitUserName = "Your Name";
gitUserEmail = "you@example.com";
codeberg = {
username = "your-codeberg-user";
password = "your-codeberg-password-or-token";
};
sshRootPassword = "changeme";
tailscaleAuthKey = "";
};
}