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