configuration.nix/secrets.nix.example

28 lines
757 B
Text
Raw Normal View History

2023-08-05 14:11:03 +05:30
{
aria2_config = {
rpc_secret = "<rpc secret for aria2>";
};
frp_config = {
ip = "<ip addess of server running frps>";
token = "<secret token for frps <-> frpc connection>";
};
caddy_config = {
email = "<email for certificate generation>";
};
2023-08-05 18:06:54 +05:30
spotify = {
username = "spotify email";
password = "spotify password";
};
2023-08-05 14:11:03 +05:30
users = {
root.hashedPassword = "<password hash of root user>";
primary = {
userName = "<primary non-root username>";
realName = "<primary user's full name>";
hashedPassword = "<password hash of primary user>";
pgpFingerprint = "<primary user's pgp fingerprint>";
emailAddress = "<primary user's email>";
sshPublicKey = "<ssh public key>";
};
};
}