nixos-config/configs/sputnik/tinc.nix

11 lines
142 B
Nix
Raw Normal View History

2019-10-24 02:20:38 +02:00
{ config, lib, pkgs, ... }:
{
module.cluster.services.tinc = {
"private" = {
enable = true;
openPort = true;
};
};
}