Nixos-Configuration/modules/nixos/common/ygg.nix
Jermeiah S d96ec5b555
All checks were successful
/ check (push) Successful in 1m2s
/ deploy (push) Successful in 1m46s
fix: removed public key mechanism as is not needed [deploy]
2025-06-25 20:05:23 -04:00

17 lines
342 B
Nix

_: {
networking.firewall.interfaces = {
ygg0 = {
allowedTCPPorts = [ 22 ];
};
};
services.yggdrasil-jumper = {
enable = true;
# settings = { };
};
networking.yggdrasil = {
enable = true;
# AllowedPublicKeys = [
# "d0e265fcf663451ae9bc048dc1297749819ce9d48042a986f2866c15a779a074"
# ];
};
}