16 lines
282 B
Nix
16 lines
282 B
Nix
{ config, lib, pkgs, ... }: {
|
|
|
|
module.cluster.services.tinc = {
|
|
#"private" = {
|
|
# enable = true;
|
|
# openPort = true;
|
|
# connectTo = [ "sputnik" ];
|
|
#};
|
|
"secure" = {
|
|
enable = true;
|
|
openPort = true;
|
|
connectTo = [ "sputnik" ];
|
|
};
|
|
};
|
|
|
|
}
|