15 lines
261 B
Nix
15 lines
261 B
Nix
|
{ config, lib, pkgs, ... }: {
|
||
|
|
||
|
module.cluster.services.tinc = {
|
||
|
"private" = {
|
||
|
enable = true;
|
||
|
openPort = true;
|
||
|
connectTo = [ ];
|
||
|
};
|
||
|
};
|
||
|
|
||
|
#sops.secrets.tinc_retiolum_ed25519_key = { };
|
||
|
#sops.secrets.tinc_retiolum_rsa_key = { };
|
||
|
|
||
|
}
|