mirror of
https://github.com/ivabus/nixos
synced 2024-11-10 02:25:18 +03:00
24 lines
730 B
Nix
24 lines
730 B
Nix
{ config, lib, secrets, ... }:
|
|
|
|
let cfg = config.my.roles.yggdrasil-peer;
|
|
in {
|
|
options.my.roles.yggdrasil-peer.enable =
|
|
lib.mkEnableOption "Enable yggdrasil (semi-public) peer";
|
|
config = lib.mkIf (cfg.enable) {
|
|
my.features.secrets = lib.mkForce true;
|
|
my.roles.yggdrasil-client.enable = true;
|
|
services.yggdrasil = {
|
|
settings = {
|
|
# Not connecting to global ygg network
|
|
Peers = lib.mkForce [ ];
|
|
Listen = [
|
|
"quic://[::]:60003?password=${secrets.yggdrasil-password}"
|
|
"tls://[::]:60002?password=${secrets.yggdrasil-password}"
|
|
];
|
|
};
|
|
};
|
|
networking.firewall.allowedTCPPorts = [ 60002 ];
|
|
networking.firewall.allowedUDPPorts = [ 60003 ];
|
|
};
|
|
}
|