Nixos-Configuration/modules/nixos/common/ygg.nix
Jermeiah S 8e3fb7852a
All checks were successful
/ check (push) Successful in 47s
/ deploy (push) Has been skipped
fix: runner needs domains working
2025-06-21 22:58:39 -04:00

17 lines
336 B
Nix

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