nixos-config/configs/sputnik/tinc.nix
2020-02-03 15:38:22 +13:00

13 lines
212 B
Nix

{ config, lib, pkgs, ... }: {
module.cluster.services.tinc = {
"private" = {
enable = true;
openPort = true;
};
"insecure" = {
enable = true;
openPort = true;
};
};
}