2023-07-05 20:43:59 +02:00
|
|
|
{ config, ... }:
|
|
|
|
{
|
|
|
|
sops.secrets.tinc_retiolum_ed25519_key = { };
|
|
|
|
sops.secrets.tinc_retiolum_rsa_key = { };
|
|
|
|
|
|
|
|
networking.retiolum.port = 720;
|
2023-10-20 08:46:57 +02:00
|
|
|
networking.retiolum.nodename = "centauri";
|
2023-07-05 20:43:59 +02:00
|
|
|
|
|
|
|
services.tinc.networks.retiolum = {
|
|
|
|
ed25519PrivateKeyFile = config.sops.secrets.tinc_retiolum_ed25519_key.path;
|
|
|
|
rsaPrivateKeyFile = config.sops.secrets.tinc_retiolum_rsa_key.path;
|
|
|
|
};
|
|
|
|
}
|