14 lines
384 B
Nix
14 lines
384 B
Nix
|
{ config, ... }:
|
||
|
{
|
||
|
sops.secrets.tinc_retiolum_ed25519_key = { };
|
||
|
sops.secrets.tinc_retiolum_rsa_key = { };
|
||
|
|
||
|
networking.retiolum.port = 720;
|
||
|
networking.retiolum.nodename = "sol";
|
||
|
|
||
|
services.tinc.networks.retiolum = {
|
||
|
ed25519PrivateKeyFile = config.sops.secrets.tinc_retiolum_ed25519_key.path;
|
||
|
rsaPrivateKeyFile = config.sops.secrets.tinc_retiolum_rsa_key.path;
|
||
|
};
|
||
|
}
|