18 lines
362 B
Nix
18 lines
362 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
# TODO Figure out a better way to manage secrets.
|
|
local.secrets = {
|
|
gitUserName = "Your Name";
|
|
gitUserEmail = "you@example.com";
|
|
codeberg = {
|
|
username = "your-codeberg-user";
|
|
password = "your-codeberg-password-or-token";
|
|
};
|
|
sshRootPassword = "changeme";
|
|
tailscaleAuthKey = "";
|
|
};
|
|
}
|